diff options
author | Soispha <soispha@vhack.eu> | 2023-07-07 08:06:27 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-07 08:06:27 +0200 |
commit | 0cc2b1da5353721815e34b4b76664b9c80452abb (patch) | |
tree | f5a82cdc027768023e66aa31a61c2bf832a0b313 /hosts | |
parent | chore(version): v0.2.0 (diff) | |
parent | Refactor(system/impermanence): Move to own directory (diff) | |
download | nixos-server-0cc2b1da5353721815e34b4b76664b9c80452abb.tar.gz nixos-server-0cc2b1da5353721815e34b4b76664b9c80452abb.zip |
Merge branch 'disko'
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/server1/configuration.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/server1/configuration.nix b/hosts/server1/configuration.nix index 78eacee..d40e749 100644 --- a/hosts/server1/configuration.nix +++ b/hosts/server1/configuration.nix @@ -1,4 +1,4 @@ -{pkgs, ...}: { +{...}: { imports = [ ./networking.nix # network configuration that just works ./hardware.nix @@ -11,7 +11,7 @@ networking.hostName = "server1"; networking.domain = "vhack.eu"; - system.fileSystemLayouts.mainDisk = "/dev/disk/by-uuid/7d960eb9-9334-4aef-9f7c-9a908a91a6db"; + system.disks.disk = "/dev/disk/by-id/ata-QEMU_DVD-ROM_QM00003"; system.stateVersion = "22.11"; } |