dotfiles/users/cirno/default.nix

36 lines
770 B
Nix
Raw Normal View History

2024-05-02 21:47:19 -07:00
{ config, pkgs, lib, ... }:
{
config = {
programs = {
firefox.enable = true;
};
services = {
displayManager.sddm = {
enable = true;
wayland.enable = true;
2024-05-03 02:39:11 -07:00
pipewire = {
enable = true;
pulse.enable = true;
alsa.enable = true;
};
2024-05-02 21:47:19 -07:00
};
desktopManager.plasma6.enable = true;
};
users.users.cirno = {
isNormalUser = true;
shell = pkgs.zsh;
home = "/home/cirno";
description = "user for guests/cirno people";
2024-05-03 02:39:11 -07:00
extraGroups = [ "wheel" "networkmanager" "kvm" "libvirtd" "audio" "dialout" ];
2024-05-02 21:47:19 -07:00
initialHashedPassword = "$6$2f8vjQbdKyEBqPRT$FrZBZfzpJGqNqLlCyb7CzRNm0wuZwfRI7Qj/dUQlbtLixyJK5Im9AJT7GXmP5StfhZxSbH/wW8nDGPQm98NXV0";
};
};
}