This commit is contained in:
2026-03-03 21:12:02 +01:00
parent 480d4f2b4b
commit fb38c91cf0
3 changed files with 2 additions and 8 deletions

View File

@@ -18,7 +18,7 @@
flake.homeModules.base = { ... }: {
imports = with config.flake.homeModules; [
git
zsh
zsh-allusers
];
};
}

View File

@@ -1,11 +1,5 @@
{ ... }: {
flake.nixosModules.sshd = { config, ... }: {
services.openssh.enable = true;
# sops.secrets."users/${user}/intern/public" = {};
# users.users.${user}.openssh.authorizedKeys.keyFiles = [
# config.sops.secrets."users/${user}/intern/public".path
# ];
};
}

View File

@@ -10,7 +10,7 @@
users.defaultUserShell = pkgs.zsh;
};
flake.homeModules.zsh = { ... }: {
flake.homeModules.zsh-allusers = { ... }: {
home.file.".zshrc".source = ./dotfiles/zsh-config;
};
}