dotfiles/users/cirno/default.nix

30 lines
602 B
Nix
Raw Permalink 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;
};
desktopManager.plasma6.enable = true;
};
users.users.cirno = {
isNormalUser = true;
shell = pkgs.zsh;
home = "/home/cirno";
description = "user for guests/cirno people";
extraGroups = [ "" ];
initialHashedPassword = "$6$2f8vjQbdKyEBqPRT$FrZBZfzpJGqNqLlCyb7CzRNm0wuZwfRI7Qj/dUQlbtLixyJK5Im9AJT7GXmP5StfhZxSbH/wW8nDGPQm98NXV0";
};
};
}