change david config location

This commit is contained in:
ulic-youthlic 2025-01-13 17:12:15 +08:00
parent 8179762975
commit 7173c22a62
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
2 changed files with 14 additions and 21 deletions

View file

@ -1,18 +0,0 @@
{ pkgs, ... }:
{
users.users.david = {
isNormalUser = true;
description = "david";
extraGroups = [
"networkmanager"
"libvirtd"
"wheel"
];
};
programs.fish.enable = true;
users.users.david.shell = pkgs.fish;
users.users.david.openssh.authorizedKeys.keyFiles = [
./tytonidae.pub
];
}

View file

@ -1,6 +1,17 @@
{ ... }: { pkgs, ... }:
{ {
imports = [ users.users.david = {
./david.nix isNormalUser = true;
description = "david";
extraGroups = [
"networkmanager"
"libvirtd"
"wheel"
];
};
programs.fish.enable = true;
users.users.david.shell = pkgs.fish;
users.users.david.openssh.authorizedKeys.keyFiles = [
./tytonidae.pub
]; ];
} }