Compare commits

...

2 commits

Author SHA1 Message Date
8a9d318d7d
chore: update nixpkgs 2024-12-25 18:03:29 +01:00
a42363013f
feat: update authorized principals 2024-12-24 15:07:42 +01:00
3 changed files with 5 additions and 3 deletions

View file

@ -157,9 +157,9 @@
"owner": "nixos",
"repo": "nixpkgs",
"branch": "nixos-24.11",
"revision": "b47fd6fa00c6afca88b8ee46cfdb00e104f50bca",
"url": "https://github.com/nixos/nixpkgs/archive/b47fd6fa00c6afca88b8ee46cfdb00e104f50bca.tar.gz",
"hash": "sha256-nbG9TijTMcfr+au7ZVbKpAhMJzzE2nQBYmRvSdXUD8g="
"revision": "1807c2b91223227ad5599d7067a61665c52d1295",
"url": "https://github.com/nixos/nixpkgs/archive/1807c2b91223227ad5599d7067a61665c52d1295.tar.gz",
"hash": "sha256-Pzyb+YNG5u3zP79zoi8HXYMs15Q5dfjDgwCdUI5B0nY="
},
"proxmox": {
"type": "GitHub",

View file

@ -20,6 +20,7 @@
shell = lib.mkForce config.users.defaultUserShell;
group = "root";
hashedPasswordFile = config.age.secrets.user-root-password.path;
openssh.authorizedPrincipals = [ "julien_root" ];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGa+7n7kNzb86pTqaMn554KiPrkHRGeTJ0asY1NjSbpr julien@tower"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMAa0wll9ildhgPiV0DhgJXXtw3TQr5VkNxxxPspHSbX julien@gallifrey"

View file

@ -18,6 +18,7 @@
];
shell = pkgs.fish;
hashedPasswordFile = config.age.secrets.julien-password.path;
openssh.authorizedPrincipals = [ "julien" ];
};
nix.settings.allowed-users = [ "julien" ];