13 lines
181 B
Nix
13 lines
181 B
Nix
{pkgs, ...}:
|
|
{
|
|
imports = [
|
|
../../nixos/zsh.nix
|
|
../../nixos/hypr.nix
|
|
];
|
|
|
|
users.users.weckyy702 = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "networkmanager" "wheel" ];
|
|
};
|
|
}
|