- unify pkg management - pass system through the modules instead of hardcoding
21 lines
517 B
Nix
21 lines
517 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
users.users.tristand = {
|
|
isNormalUser = true;
|
|
description = "Tristan Druyen";
|
|
extraGroups = ["docker" "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 inputs;
|
|
};
|
|
}
|