diff options
| author | Gregor Kleen <gkleen@yggdrasil.li> | 2020-04-19 17:44:15 +0200 |
|---|---|---|
| committer | Gregor Kleen <gkleen@yggdrasil.li> | 2020-04-19 17:44:15 +0200 |
| commit | be2f8274b31a5cf77ba3c50a1de4cdd18435fbfb (patch) | |
| tree | 0569fc11905ddc4563f195aab9550475115ad4a4 | |
| parent | 80aa9e073226b454f0cfe5d9a66e47d6b4baf609 (diff) | |
| download | nixos-be2f8274b31a5cf77ba3c50a1de4cdd18435fbfb.tar nixos-be2f8274b31a5cf77ba3c50a1de4cdd18435fbfb.tar.gz nixos-be2f8274b31a5cf77ba3c50a1de4cdd18435fbfb.tar.bz2 nixos-be2f8274b31a5cf77ba3c50a1de4cdd18435fbfb.tar.xz nixos-be2f8274b31a5cf77ba3c50a1de4cdd18435fbfb.zip | |
...
| -rw-r--r-- | ullr/hw.nix | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/ullr/hw.nix b/ullr/hw.nix index 11bcbecf..36a20fe6 100644 --- a/ullr/hw.nix +++ b/ullr/hw.nix | |||
| @@ -1,3 +1,6 @@ | |||
| 1 | # Do not modify this file! It was generated by ‘nixos-generate-config’ | ||
| 2 | # and may be overwritten by future invocations. Please make changes | ||
| 3 | # to /etc/nixos/configuration.nix instead. | ||
| 1 | { config, lib, pkgs, ... }: | 4 | { config, lib, pkgs, ... }: |
| 2 | 5 | ||
| 3 | { | 6 | { |
| @@ -6,19 +9,20 @@ | |||
| 6 | ]; | 9 | ]; |
| 7 | 10 | ||
| 8 | boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "sd_mod" "sr_mod" ]; | 11 | boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "sd_mod" "sr_mod" ]; |
| 9 | boot.initrd.kernelModules = [ ]; | 12 | boot.initrd.kernelModules = [ "dm-snapshot" ]; |
| 10 | boot.kernelModules = [ ]; | 13 | boot.kernelModules = [ ]; |
| 11 | boot.extraModulePackages = [ ]; | 14 | boot.extraModulePackages = [ ]; |
| 12 | 15 | ||
| 13 | fileSystems."/" = | 16 | fileSystems."/" = |
| 14 | { device = "/dev/sda2"; | 17 | { device = "/dev/disk/by-uuid/e406aaf8-65bd-47b6-b6e9-151c81341280"; |
| 15 | fsType = "btrfs"; | 18 | fsType = "ext4"; |
| 16 | }; | 19 | }; |
| 17 | 20 | ||
| 18 | fileSystems."/boot" = | 21 | fileSystems."/boot" = |
| 19 | { device = "/dev/disk/by-uuid/f6a369e3-4be6-413f-8b9e-985a113c66f7"; | 22 | { device = "/dev/disk/by-uuid/faee127e-d658-4263-8a95-91422c5e6c74"; |
| 20 | fsType = "ext4"; | 23 | fsType = "ext2"; |
| 21 | }; | 24 | }; |
| 22 | 25 | ||
| 23 | swapDevices = [ ]; | 26 | swapDevices = [ ]; |
| 27 | |||
| 24 | } | 28 | } |
