diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2025-03-12 18:44:59 +0100 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2025-03-12 18:44:59 +0100 |
| commit | 5db849639d0d13a1e7cb0648009eadc91884d385 (patch) | |
| tree | 086ca7a70024c16c7dcb41eed94accf203a27fcf /config/hardware-configuration.nix | |
| parent | 3c45c974b43c8c342ea7befee45a262fbb355458 (diff) | |
allow reboot on autoUpgrade
Diffstat (limited to 'config/hardware-configuration.nix')
| -rw-r--r-- | config/hardware-configuration.nix | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/config/hardware-configuration.nix b/config/hardware-configuration.nix deleted file mode 100644 index 1b79e6f..0000000 --- a/config/hardware-configuration.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ pkgs, lib, modulesPath, ... }: - -{ - imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; - - boot.initrd.availableKernelModules = - [ "ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk" ]; - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-amd" ]; - boot.extraModulePackages = [ ]; - - fileSystems."/" = { - device = "/dev/disk/by-uuid/2b302948-5608-41c6-b54c-1c0e39ff6a58"; - fsType = "ext4"; - }; - - boot.initrd.luks.devices."root".device = - "/dev/disk/by-uuid/eaec758b-ba22-42ab-8992-e765cec9be55"; - - fileSystems."/boot" = { - device = "/dev/disk/by-uuid/74d78eba-c29a-4724-8fb7-624e0a03faa5"; - fsType = "ext4"; - }; - - swapDevices = [{ device = "/swap"; }]; - -} |
