nixos-config/home/46d1.nix

39 lines
862 B
Nix
Raw Normal View History

{
inputs,
pkgs,
...
}: {
imports = [
inputs.home-manager.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 = {
2025-02-11 19:25:06 +01:00
".zshrc".source = ../dotfiles/.zshrc;
".bashrc".source = ../dotfiles/.bashrc;
".shellrc".source = ../dotfiles/.shellrc;
2024-04-23 17:29:48 +02:00
2025-02-11 19:25:06 +01:00
".config/btop/btop.conf".source = ../dotfiles/btop.conf;
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
};
}