summaryrefslogtreecommitdiff
path: root/hardware-configuration.nix
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2023-02-19 16:56:48 +0100
committerQuentin Aristote <quentin@aristote.fr>2023-02-19 17:01:10 +0100
commit25f9b854c0065a3d63278178ef4c8abc99108eba (patch)
tree50eb4c1d8e32d65b49905ebfb8ff8411045e30d6 /hardware-configuration.nix
parent547870aaafcafe4836557f2fc98768053af26ef2 (diff)
parent7532f335a3ed8a898e2df95f06faa38bad2b8e5d (diff)
downloadhermes-25f9b854c0065a3d63278178ef4c8abc99108eba.tar.gz
hermes-25f9b854c0065a3d63278178ef4c8abc99108eba.tar.bz2
hermes-25f9b854c0065a3d63278178ef4c8abc99108eba.tar.xz
Merge branch 'rollback'
Diffstat (limited to 'hardware-configuration.nix')
-rw-r--r--hardware-configuration.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/hardware-configuration.nix b/hardware-configuration.nix
deleted file mode 100644
index 1b79e6f..0000000
--- a/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"; }];
-
-}