Remove global packages from users, skrott: remove neovim properly

This commit is contained in:
h7x4
2026-01-26 12:06:30 +09:00
parent 0206c159a2
commit 1b6ff9876d
14 changed files with 21 additions and 42 deletions

View File

@@ -1,13 +1,12 @@
{pkgs, ...}:
{ config, pkgs, ... }:
{
users.users.alfhj = {
isNormalUser = true;
extraGroups = [ "wheel" ];
shell = pkgs.zsh;
shell = if config.programs.zsh.enable then pkgs.zsh else pkgs.bash;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMCAYE0U3sFizm/NSbKCs0jEhZ1mpAWPcijFevejiFL1 alfhj"
];
};
}