Files
nixos-config/home/default.nix
Elias Schröter 090fb01c0a openscad & kitty
enable nvim openscad and switch to kitty
2026-03-28 13:55:32 +01:00

69 lines
1.2 KiB
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;
# ── whatsie insecure ──────────────────────────────────────────────────
nixpkgs.config = {
allowUnfree = true;
permittedInsecurePackages = [
"electron-32.3.3"
"qtwebengine-5.15.19"
];
};
}