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

26 lines
644 B
Nix
Raw Normal View History

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