nix/users.nix
Tristan Druyen 256fe98c51
Add plasma-manager
- reorganize module imports for home.config
- add plasma-manager & current plasma conf
- add readme on how to update plasma conf based on manual setting changes
2023-09-29 16:33:19 +02:00

23 lines
546 B
Nix

{
pkgs,
config,
customPkgs,
inputs,
...
}: {
users.users.tristand = {
isNormalUser = true;
description = "Tristan Druyen";
extraGroups = ["networkmanager" "wheel" "libvirtd" "qemu-libvirtd"];
shell = pkgs.fish;
home = "/home/tristand";
hashedPassword = "$6$Wj.XY8JgH5EWuog4$HnbtPJXDEqKXFrzkPVEjih3PytcpBCrkfL7TAwkXd0IFced7kGMlZNliNsAqQ3XqfyUzAYiiKTIqoPVJEk.s..";
};
home-manager.users.tristand = import ./home.nix {
inherit pkgs;
inherit config;
inherit customPkgs;
inherit inputs;
};
}