issue with hm fixed
This commit is contained in:
parent
3e7b1bab94
commit
318f03df08
8 changed files with 61 additions and 45 deletions
28
hosts/common/users/luna/default.nix
Normal file
28
hosts/common/users/luna/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.users.luna = {
|
||||
isNormalUser = true;
|
||||
description = "luna";
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
"wheel"
|
||||
];
|
||||
packages = with pkgs; [
|
||||
# thunderbird
|
||||
gnome-software
|
||||
git
|
||||
neovim
|
||||
rustup
|
||||
vscode.fhs
|
||||
nix-inspect
|
||||
protonvpn-gui
|
||||
];
|
||||
};
|
||||
|
||||
home-manager.users.luna = import ../../../../home-manager/luna/${config.networking.hostName}.nix;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue