From 7f858e17dcf77aa60aae741eb2e2a4067e62353d Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Mon, 3 Jun 2024 19:21:49 -0400 Subject: [PATCH] qcow and installer-iso fixes Signed-off-by: ahuston-0 --- modules/openssh.nix | 2 +- systems/artemision/hardware.nix | 2 +- systems/jeeves-jr/hardware.nix | 2 +- systems/jeeves/hardware.nix | 2 +- systems/palatine-hill/hardware.nix | 2 +- systems/rhapsody-in-green/hardware.nix | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/openssh.nix b/modules/openssh.nix index ed9ac3e..1b02e46 100644 --- a/modules/openssh.nix +++ b/modules/openssh.nix @@ -33,7 +33,7 @@ MaxSessions = lib.mkDefault 2; PasswordAuthentication = false; PermitEmptyPasswords = "no"; - PermitRootLogin = "no"; + PermitRootLogin = lib.mkForce "no"; TcpKeepAlive = "no"; X11Forwarding = lib.mkDefault false; KexAlgorithms = [ diff --git a/systems/artemision/hardware.nix b/systems/artemision/hardware.nix index c7542b3..47fab24 100644 --- a/systems/artemision/hardware.nix +++ b/systems/artemision/hardware.nix @@ -46,7 +46,7 @@ fileSystems = { - "/" = { + "/" = lib.mkDefault { device = "/dev/disk/by-uuid/f3c11d62-37f4-495e-b668-1ff49e0d3a47"; fsType = "ext4"; options = [ diff --git a/systems/jeeves-jr/hardware.nix b/systems/jeeves-jr/hardware.nix index 47b857c..9b00734 100644 --- a/systems/jeeves-jr/hardware.nix +++ b/systems/jeeves-jr/hardware.nix @@ -28,7 +28,7 @@ }; fileSystems = { - "/" = { + "/" = lib.mkDefault { device = "/dev/disk/by-uuid/c59f7261-ebab-4cc9-8f1d-3f4c2e4b1971"; fsType = "ext4"; }; diff --git a/systems/jeeves/hardware.nix b/systems/jeeves/hardware.nix index b4ae8c8..1e09bc4 100644 --- a/systems/jeeves/hardware.nix +++ b/systems/jeeves/hardware.nix @@ -28,7 +28,7 @@ extraModulePackages = [ ]; }; - fileSystems."/" = { + fileSystems."/" = lib.mkDefault { device = "/dev/disk/by-uuid/0f78fa87-30be-4173-b0fa-eaa956cf83aa"; fsType = "ext4"; }; diff --git a/systems/palatine-hill/hardware.nix b/systems/palatine-hill/hardware.nix index ffcd1f1..2e08fcd 100644 --- a/systems/palatine-hill/hardware.nix +++ b/systems/palatine-hill/hardware.nix @@ -28,7 +28,7 @@ }; fileSystems = { - "/" = { + "/" = lib.mkDefault { device = "/dev/disk/by-uuid/b3b709ce-fe88-4267-be47-bf991a512cbe"; fsType = "ext4"; }; diff --git a/systems/rhapsody-in-green/hardware.nix b/systems/rhapsody-in-green/hardware.nix index b9c1e39..6faf14e 100644 --- a/systems/rhapsody-in-green/hardware.nix +++ b/systems/rhapsody-in-green/hardware.nix @@ -24,7 +24,7 @@ extraModulePackages = [ ]; }; - fileSystems."/" = { + fileSystems."/" = lib.mkDefault { device = "/dev/disk/by-uuid/c5cc486b-0076-40b0-9402-7ddb2b4a7fdf"; fsType = "ext4"; };