Files
nixos-config/home/default.nix
Elias Schröter 0437d90402 neofetch 6 whatsie
change neofetch to fastfetch & Adapt insecure packages to make whatsie
installation possible
2026-03-15 15:41:27 +01:00

63 lines
1.1 KiB
Nix

{ pkgs, ... }:
{
imports = [
./services
];
# 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
fuse
# misc
tree
which
# system tools
lm_sensors
pavucontrol
sshfs
cups
firefox
bitwarden-desktop
];
stateVersion = "23.11";
};
programs.home-manager.enable = true;
nixpkgs.config = {
allowUnfree = true;
permittedInsecurePackages = [ "qtwebengine-5.15.19" ];
};
# ── whatsie insecure ──────────────────────────────────────────────────
}