cleanup
This commit is contained in:
parent
29f54e7a5c
commit
5239ad4550
12 changed files with 89 additions and 14 deletions
9
hosts/desktop/glacier/users.nix
Normal file
9
hosts/desktop/glacier/users.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{config, ...}: {
|
||||
users.users.guest = {
|
||||
description = "Guest";
|
||||
uid = 1001;
|
||||
isNormalUser = true;
|
||||
hashedPasswordFile = config.age.secrets."user-guest".path;
|
||||
openssh.authorizedKeys.keys = builtins.attrValues config.pubkeys.users;
|
||||
};
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
inputs,
|
||||
self,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
|
@ -12,7 +12,7 @@
|
|||
pkgs.openssh
|
||||
];
|
||||
text = let
|
||||
remoteDir = inputs.self.nixosConfigurations.abacus.config.services.navidrome.settings.MusicFolder;
|
||||
remoteDir = self.nixosConfigurations.abacus.config.services.navidrome.settings.MusicFolder;
|
||||
enc = pkgs.writeShellApplication {
|
||||
name = "enc";
|
||||
runtimeInputs = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue