This commit is contained in:
Bryan Ramos 2024-05-12 12:01:13 -04:00
parent ff5a0fe6a3
commit 929dbf8c43
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
16 changed files with 74 additions and 61 deletions

View file

@ -10,7 +10,7 @@
programs.home-manager.enable = true;
programs.bash.shellAliases = {
nixup = "sudo nixos-rebuild switch --flake /etc/nixos/.#server";
nixup = "sudo nixos-rebuild switch --flake ${config.user.nixosDir}/.#server";
};
home.stateVersion = "23.11";

View file

@ -19,7 +19,7 @@
${config.user.name} = {
isNormalUser = true;
extraGroups = config.user.groups;
openssh.authorizedKeys.keys = config.user.sshKeys.key1;
openssh.authorizedKeys.keys = [ "${config.user.sshKeys.key1}" ];
};
};