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

37 lines
767 B
Nix
Raw Normal View History

{
inputs,
pkgs,
...
}: {
imports = [
2024-05-30 20:34:42 +02:00
inputs.home-manager-stable.nixosModules.home-manager
];
2024-04-23 17:29:48 +02:00
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.
2024-05-01 12:10:16 +02:00
home.stateVersion = "23.11";
2024-04-23 17:29:48 +02:00
};
}