added samba

This commit is contained in:
ISnortPennies 2022-08-08 00:18:37 -04:00 committed by ISnortPennies
parent 84774eedc0
commit 8e626d25e7
10 changed files with 64 additions and 25 deletions

View file

@ -23,12 +23,16 @@
system.stateVersion = "22.11";
hardware.cpu.amd.updateMicrocode = true;
# end important stuff
environment.systemPackages = with pkgs; [
xorg.xf86videoamdgpu
];
# user managment
users = {
defaultUserShell = pkgs.zsh;
defaultUserShell = pkgs.dash;
users.gerg = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = [ "wheel" "audio" "networkmanager"];
};
};