nixos/systems/desktop.nix
2023-01-25 13:13:51 -05:00

58 lines
1.1 KiB
Nix

{
pkgs,
settings,
lib,
...
}: {
imports = let
modules = [
"boot"
"fonts"
"git"
#"mining"
"packages"
"parrot"
"refreshrate"
"scripts"
"vfio"
"xserver"
"zsh"
];
in
lib.lists.forEach modules (
m:
../modules + ("/" + m + ".nix")
);
networking.hostName = "gerg-desktop";
boot.kernelPackages = pkgs.linuxPackages_latest;
hardware.cpu.amd.updateMicrocode = true;
environment.systemPackages = with pkgs; [
vscodium
gimp
];
#user managment
users = {
defaultUserShell = pkgs.zsh;
users."${settings.username}" = {
isNormalUser = true;
extraGroups = ["wheel" "audio" "networkmanager" "kvm" "libvirtd"];
};
};
boot = {
initrd = {
kernelModules = ["amdgpu"];
availableKernelModules = ["nvme" "xhci_pci" "ahci" "usbhid" "uas" "sd_mod"];
};
};
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/e5c9634f-0273-4fd3-b35f-49899984340f";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/D3B9-197E";
fsType = "vfat";
};
};
}