mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
Add dotfiles
This commit is contained in:
commit
39fe550b3e
45 changed files with 4363 additions and 0 deletions
31
modules/core/users.nix
Normal file
31
modules/core/users.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
users.users.root.initialPassword = "changeme";
|
||||
programs.zsh.enable = true;
|
||||
programs.adb.enable = true;
|
||||
users.users.muon = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"systemd-journal"
|
||||
"vboxusers"
|
||||
"audio"
|
||||
"plugdev"
|
||||
"wireshark"
|
||||
"video"
|
||||
"input"
|
||||
"lp"
|
||||
"networkmanager"
|
||||
"power"
|
||||
"nix"
|
||||
"docker"
|
||||
"adbusers"
|
||||
];
|
||||
uid = 1000;
|
||||
shell = pkgs.zsh;
|
||||
initialPassword = "changeme";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue