diff options
| author | Mike Vink <mike1994vink@gmail.com> | 2023-10-18 22:27:26 +0200 |
|---|---|---|
| committer | Mike Vink <mike1994vink@gmail.com> | 2023-10-18 22:27:26 +0200 |
| commit | fa37518d7b6fb2d197d7933233cde37ffeec7cdf (patch) | |
| tree | 79021b4de1477bc49dc830fa369cc2db02595754 /machines | |
| parent | e4a3e449cd964cf565307f8c004fb48e00ebbbb3 (diff) | |
make neovim run as daemon
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; |
