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; [
|
2024-05-01 11:22:57 +02:00
|
|
|
thunderbird
|
2024-04-23 17:29:48 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
# The state version is required and should stay at the version you
|
|
|
|
# originally installed.
|
|
|
|
home.stateVersion = "24.05";
|
|
|
|
};
|
|
|
|
}
|