diff --git a/users/cirno/default.nix b/users/cirno/default.nix index 4870a94..856b707 100644 --- a/users/cirno/default.nix +++ b/users/cirno/default.nix @@ -10,20 +10,25 @@ }; services = { + desktopManager.plasma6.enable = true; displayManager.sddm = { enable = true; wayland.enable = true; + } + pipewire = { + alsa.enable = true; + enable = true; + pulse.enable = true; }; - desktopManager.plasma6.enable = true; }; users.users.cirno = { + description = "user for guests/cirno people"; + extraGroups = [ "audio" ]; + home = "/home/cirno"; + initialHashedPassword = "$6$2f8vjQbdKyEBqPRT$FrZBZfzpJGqNqLlCyb7CzRNm0wuZwfRI7Qj/dUQlbtLixyJK5Im9AJT7GXmP5StfhZxSbH/wW8nDGPQm98NXV0"; isNormalUser = true; shell = pkgs.zsh; - home = "/home/cirno"; - description = "user for guests/cirno people"; - extraGroups = [ "" ]; - initialHashedPassword = "$6$2f8vjQbdKyEBqPRT$FrZBZfzpJGqNqLlCyb7CzRNm0wuZwfRI7Qj/dUQlbtLixyJK5Im9AJT7GXmP5StfhZxSbH/wW8nDGPQm98NXV0"; }; }; } diff --git a/users/stitchynyan/default.nix b/users/stitchynyan/default.nix index f85557b..c91b878 100644 --- a/users/stitchynyan/default.nix +++ b/users/stitchynyan/default.nix @@ -4,13 +4,13 @@ imports = [ ../default.nix ]; nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem ( lib.getName pkg) [ + "cudatoolkit" + "nvidia-settings" + "nvidia-x11" "osu-lazer" "steam" "steam-original" "steam-run" - "nvidia-x11" - "nvidia-settings" - "cudatoolkit" ]; programs = { @@ -23,6 +23,8 @@ }; }; + security.pam.services.swaylock = {}; + services = { avahi = { enable = config.stitchyconf.form == "pc"; @@ -32,23 +34,21 @@ blueman.enable = true; gnome.gnome-keyring.enable = true; pipewire = { + alsa.enable = true; enable = true; pulse.enable = true; - alsa.enable = true; }; printing.enable = true; usbmuxd.enable = true; xserver.enable = true; }; - security.pam.services.swaylock = {}; - users.users.stitchynyan = { - isNormalUser = true; - shell = pkgs.zsh; - home = "/home/stitchynyan"; description = "Personal user"; extraGroups = [ "wheel" "networkmanager" "kvm" "libvirtd" "audio" "dialout" ]; + home = "/home/stitchynyan"; initialHashedPassword = "$y$j9T$rvySCWHYE4AO4A9J0Vf20.$x5hpBNsOWovQFtNfFUIt17OAH5MJFwFBGjxbaEIagJ3"; + isNormalUser = true; + shell = pkgs.zsh; }; }