nix/users.nix
Tristan Druyen a2f5762421
Add docker
- switch to latest stable kernel
- enable docker & enable group for tristand
- update flakes
2023-10-04 14:57:32 +02:00

23 lines
555 B
Nix

{
pkgs,
config,
customPkgs,
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 customPkgs;
inherit inputs;
};
}