nixos-config/home/46d1/home.nix

30 lines
665 B
Nix
Raw Normal View History

2024-04-23 17:29:48 +02:00
{pkgs, ...}: {
users.users.user = {
isNormalUser = true;
description = "User";
2024-04-23 17:37:56 +02:00
extraGroups = [
"networkmanager"
"wheel"
"syncthing"
];
2024-04-23 17:29:48 +02:00
initialPassword = "password123";
};
home-manager.users.user = {pkgs, ...}: {
home.file = {
2024-04-26 15:06:55 +02:00
".zshrc".source = ../../dotfiles/.shellrc;
".bashrc".source = ../../dotfiles/.shellrc;
2024-04-23 17:29:48 +02:00
# ".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";
};
}