Files
nixos-config/home/default.nix
Elias Schröter 0a4a0737ff update
and adapt setup to changes
2026-05-31 08:35:22 +02:00

60 lines
862 B
Nix

{ pkgs, ... }:
{
imports = [
./extras
./services
./themes
];
# home.persistence."/persistent" = {
# directories = [
# "Downloads"
# "Pictures"
# "Documents"
# {
# directory = ".gnupg";
# mode = "0700";
# }
# {
# directory = ".ssh";
# mode = "0700";
# }
# {
# directory = ".local/share/keyrings";
# mode = "0700";
# }
# ];
# };
#
home = {
username = "elias";
homeDirectory = "/home/elias";
packages = with pkgs; [
# archives
unzip
zip
# misc
tree
which
# system tools
lm_sensors
pavucontrol
cups
firefox
bitwarden-desktop
# Sops
age
sops
];
stateVersion = "26.05";
};
programs.home-manager.enable = true;
}