nixos-config/home/46d1/home.nix
2024-04-26 15:06:55 +02:00

30 lines
665 B
Nix

{pkgs, ...}: {
users.users.user = {
isNormalUser = true;
description = "User";
extraGroups = [
"networkmanager"
"wheel"
"syncthing"
];
initialPassword = "password123";
};
home-manager.users.user = {pkgs, ...}: {
home.file = {
".zshrc".source = ../../dotfiles/.shellrc;
".bashrc".source = ../../dotfiles/.shellrc;
# ".librewolf/librewolf.overrides.cfg".source = ../../dotfiles/librewolf.overrides.cfg;
};
home.packages = with pkgs; [
#
];
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "24.05";
};
}