2023-06-03 22:53:57 -04:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
modulesPath,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
imports = [
|
2023-12-07 03:51:44 -05:00
|
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
2023-06-03 22:53:57 -04:00
|
|
|
];
|
|
|
|
|
2023-12-07 03:51:44 -05:00
|
|
|
boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod"];
|
2023-06-03 22:53:57 -04:00
|
|
|
boot.initrd.kernelModules = [];
|
2023-12-07 03:51:44 -05:00
|
|
|
boot.kernelModules = [];
|
2023-06-03 22:53:57 -04:00
|
|
|
boot.extraModulePackages = [];
|
|
|
|
|
|
|
|
fileSystems."/" = {
|
2023-12-07 04:48:52 -05:00
|
|
|
device = "/dev/disk/by-uuid/833959fb-de9d-4820-aa22-e6ce8bce6f6c";
|
2023-06-03 22:53:57 -04:00
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
|
2023-06-13 12:11:08 -04:00
|
|
|
fileSystems."/home/notoh/docker/stash/data" = {
|
2023-12-03 00:00:58 -05:00
|
|
|
device = "192.168.1.199:/mnt/Sutoreji/stash";
|
2023-06-13 12:11:08 -04:00
|
|
|
fsType = "nfs";
|
|
|
|
};
|
|
|
|
|
2023-09-17 14:06:53 -04:00
|
|
|
fileSystems."/media" = {
|
2023-12-03 00:00:58 -05:00
|
|
|
device = "192.168.1.199:/mnt/Sutoreji/media";
|
2023-09-17 14:06:53 -04:00
|
|
|
fsType = "nfs";
|
|
|
|
};
|
|
|
|
|
2023-12-31 12:51:49 -05:00
|
|
|
fileSystems."/nas/restic" = {
|
|
|
|
device = "192.168.1.199:/mnt/Sutoreji/nix-restic-data/yuki";
|
|
|
|
fsType = "nfs";
|
|
|
|
};
|
|
|
|
|
2023-06-03 22:53:57 -04:00
|
|
|
swapDevices = [
|
2023-12-07 04:48:52 -05:00
|
|
|
{device = "/dev/disk/by-uuid/bd7ccb73-6f85-4b3d-b37f-5cff58a6ab59";}
|
2023-06-03 22:53:57 -04:00
|
|
|
];
|
2023-12-31 14:54:38 -05:00
|
|
|
|
2023-06-03 22:53:57 -04:00
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
}
|