diff options
Diffstat (limited to 'machines')
| -rw-r--r-- | machines/serber.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/machines/serber.nix b/machines/serber.nix index 48ccf27..09208ee 100644 --- a/machines/serber.nix +++ b/machines/serber.nix @@ -1,4 +1,4 @@ -{ modulesPath, config, pkgs, sops, ... }: { +{ modulesPath, config, pkgs, lib, ... }: with lib; { imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; networking = { @@ -32,7 +32,7 @@ boot.initrd.kernelModules = [ "nvme" ]; fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; }; - sops.age.sshKeyPaths = [/etc/ssh/ssh_host_ed25519_key]; + sops.age.sshKeyPaths = ["/etc/ssh/ssh_host_ed25519_key"]; system.stateVersion = "23.05"; boot.tmp.cleanOnBoot = true; |
