2025-01-13 11:52:09 +08:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
modulesPath,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
{
|
2024-01-19 21:23:31 +08:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2025-01-13 11:52:09 +08:00
|
|
|
imports =
|
|
|
|
lib.pipe ./. [
|
|
|
|
builtins.readDir
|
|
|
|
(lib.filterAttrs (n: ty: ty == "regular" && n != "default.nix"))
|
|
|
|
(lib.mapAttrsToList (n: _: ./${n}))
|
|
|
|
]
|
|
|
|
++ [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
2024-01-19 21:23:31 +08:00
|
|
|
|
2025-01-13 11:52:09 +08:00
|
|
|
boot.initrd.availableKernelModules = [
|
|
|
|
"ahci"
|
|
|
|
"xhci_pci"
|
|
|
|
"virtio_pci"
|
|
|
|
"usbhid"
|
|
|
|
"sr_mod"
|
|
|
|
"virtio_blk"
|
|
|
|
];
|
2024-01-19 21:23:31 +08:00
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
}
|