Initial commit
This commit is contained in:
22
modules/base/user.nix
Normal file
22
modules/base/user.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ inputs, pkgs, ... }:
|
||||
{
|
||||
# NixOS
|
||||
users.users.dark = {
|
||||
isNormalUser = true;
|
||||
description = "Dark Steveneq";
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"networkmanager"
|
||||
"video"
|
||||
"kvm"
|
||||
];
|
||||
};
|
||||
|
||||
# Home manager
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
users.dark = ./home;
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user