nixos-config/home/user/home.nix

40 lines
805 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:37:56 +02:00
users.users.user = {
isNormalUser = true;
description = "User";
extraGroups = [
"networkmanager"
"wheel"
"syncthing"
"tss"
"dialout"
];
initialPassword = "password123";
};
home-manager.users.user = {pkgs, ...}: {
home.file = {
2024-06-06 15:50:43 +02:00
".zshrc".source = ../../dotfiles/.zshrc;
".bashrc".source = ../../dotfiles/.bashrc;
".shellrc".source = ../../dotfiles/.shellrc;
".config/btop/btop.conf".source = ../../dotfiles/btop.conf;
2024-04-23 17:37:56 +02:00
};
home.packages = with pkgs; [
#
];
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "24.05";
};
}