nixos/spec/yume/default.nix

38 lines
959 B
Nix
Raw Normal View History

2024-01-19 21:23:31 +08:00
{ pkgs
, lib
, config
, modulesPath
, ... }: {
global = {
id = "d40d05288c1544af94e534eab24768fc";
fs.esp.uuid = "6CEB-765A";
fs.type = "xfs";
fs.store = "b80e8bbe-d1ff-4d2e-ae25-9e9048d67355";
2024-07-12 17:10:40 +08:00
boot.lanzaboote = true;
2024-01-27 22:14:03 +08:00
gpu.enable = true;
gpu.type = "nvidia";
2024-10-21 20:48:04 +08:00
android.enable = true;
2024-01-19 21:23:31 +08:00
};
home = {
2024-09-02 22:14:26 +08:00
gnome.enable = true;
2024-01-19 21:23:31 +08:00
gyroflow.enable = true;
2024-05-05 20:52:07 +08:00
jetbrains.enable = true;
vscode.enable = true;
2024-01-19 21:23:31 +08:00
libreoffice.enable = true;
minecraft.enable = true;
steam.enable = true;
};
imports = lib.pipe ./. [
builtins.readDir
(lib.filterAttrs (n: ty: ty == "regular" && n != "default.nix"))
(lib.mapAttrsToList (n: _: ./${n}))
] ++ [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "usbhid" "sr_mod" "virtio_blk" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
}