Server
This commit is contained in:
parent
2591fe68a8
commit
dbc2ede2fe
9 changed files with 157 additions and 3 deletions
|
|
@ -39,5 +39,13 @@
|
|||
#inputs.midirun.nixosModules.default
|
||||
];
|
||||
};
|
||||
nixosConfigurations.dellserv = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./hosts/dellserv/configuration.nix
|
||||
inputs.home-manager.nixosModules.default
|
||||
#inputs.midirun.nixosModules.default
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
70
hosts/dellserv/configuration.nix
Normal file
70
hosts/dellserv/configuration.nix
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
# Edit this configuration file to define what should be installed on
|
||||
# your system. Help is available in the configuration.nix(5) man page, on
|
||||
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
||||
|
||||
{ config, lib, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
inputs.home-manager.nixosModules.default
|
||||
../../modules/nixos/user-jack.nix
|
||||
];
|
||||
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
networking.hostName = "dell-xps-nixos-serv"; # Define your hostname.
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
nix.settings.experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
];
|
||||
|
||||
time.timeZone = "America/Los_Angeles";
|
||||
|
||||
services.dbus.enable = true;
|
||||
|
||||
programs.zsh.enable = true;
|
||||
|
||||
programs.dconf.enable = true;
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
services.openssh.enable = true;
|
||||
|
||||
home-manager = {
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
users = {
|
||||
"jack" = import ./home.nix;
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
tree
|
||||
vim # Both vim and neovim just in case
|
||||
wget
|
||||
git
|
||||
gcc
|
||||
fastfetch
|
||||
brightnessctl
|
||||
killall
|
||||
unzip
|
||||
python3
|
||||
nodejs
|
||||
];
|
||||
|
||||
virtualisation.docker.enable = true;
|
||||
|
||||
services.libinput.enable = true;
|
||||
|
||||
services.gvfs.enable = true;
|
||||
|
||||
system.stateVersion = "25.11";
|
||||
|
||||
}
|
||||
|
||||
33
hosts/dellserv/hardware-configuration.nix
Normal file
33
hosts/dellserv/hardware-configuration.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||
# and may be overwritten by future invocations. Please make changes
|
||||
# to /etc/nixos/configuration.nix instead.
|
||||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" "sr_mod" ];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/1147a4f4-e2fe-4c6a-be31-d1cf75599f07";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/EDF0-FBD3";
|
||||
fsType = "vfat";
|
||||
options = [ "fmask=0022" "dmask=0022" ];
|
||||
};
|
||||
|
||||
swapDevices =
|
||||
[ { device = "/dev/disk/by-uuid/2a01e260-f5d8-4038-a6c0-9ff22959350e"; }
|
||||
];
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
}
|
||||
39
hosts/dellserv/home.nix
Normal file
39
hosts/dellserv/home.nix
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
|
||||
imports = [
|
||||
../../modules/home-manager/zsh.nix
|
||||
../../modules/home-manager/tmux.nix
|
||||
../../modules/home-manager/shell-aliases.nix
|
||||
];
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
# Home Manager needs a bit of information about you and the paths it should
|
||||
# manage.
|
||||
home.username = "jack";
|
||||
home.homeDirectory = "/home/jack";
|
||||
|
||||
home.stateVersion = "25.05"; # Please read the comment before changing.
|
||||
|
||||
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
||||
# plain files is through 'home.file'.
|
||||
home.file = { };
|
||||
|
||||
nixpkgs = {
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
allowUnfreePredicate = (_: true);
|
||||
};
|
||||
};
|
||||
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
|
||||
}
|
||||
|
|
@ -44,6 +44,9 @@
|
|||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
services.gtkapps.enable = true;
|
||||
services.gtkbar.enable = true;
|
||||
|
||||
# services.midirun = {
|
||||
# enable = true;
|
||||
# };
|
||||
|
|
|
|||
|
|
@ -48,6 +48,9 @@
|
|||
|
||||
virtualisation.docker.enable = true;
|
||||
|
||||
services.gtkapps.enable = true;
|
||||
services.gtkbar.enable = true;
|
||||
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
wlr.enable = true;
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@
|
|||
syntaxHighlighting.enable = true;
|
||||
autosuggestion.enable = true;
|
||||
initContent = ''
|
||||
ZSH_AUTOSUGGEST_USE_ASYNC=false
|
||||
fastfetch -c examples/11
|
||||
'';
|
||||
oh-my-zsh = {
|
||||
|
|
|
|||
|
|
@ -5,8 +5,6 @@
|
|||
programs.firefox.enable = true;
|
||||
programs.hyprland.enable = true;
|
||||
|
||||
services.gtkapps.enable = true;
|
||||
services.gtkbar.enable = true;
|
||||
|
||||
# List packages installed in system profile.
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
|
|||
|
|
@ -11,7 +11,6 @@
|
|||
"docker"
|
||||
]; # Enable ‘sudo’ for the user.
|
||||
packages = with pkgs; [
|
||||
zed-editor
|
||||
cargo
|
||||
clang
|
||||
clang-tools
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue