This commit is contained in:
CherryKitten 2024-03-24 19:02:25 +01:00
parent d4ba3267fa
commit dcf9f050e6
Signed by: sammy
GPG key ID: 98D8F75FB0658276
2 changed files with 10 additions and 9 deletions

View file

@ -1,19 +1,20 @@
{
lib,
config,
pkgs,
...
{ lib
, config
, pkgs
, ...
}: {
users.users = {
sammy = {
isNormalUser = true;
extraGroups = ["networkmanager" "wheel" "docker"];
shell = pkgs.nushell;
extraGroups = [ "networkmanager" "wheel" "docker" ];
shell = pkgs.fish;
ignoreShellProgramCheck = true;
openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJZyQSZw+pExsx2RXB+yxbaJGB9mtvudbQ/BP7E1yKvr openpgp:0x6068FEBB" ];
};
};
home-manager.useUserPackages = true;
home-manager.users = {
sammy.imports = [./sammy.nix];
sammy.imports = [ ./sammy.nix ];
};
}

View file

@ -32,7 +32,7 @@
};
};
nushell = {
fish = {
enable = true;
};
};