fix small errors in themes and reset folder changed to preserve initial Nextcloud sync
64 lines
1.1 KiB
Nix
64 lines
1.1 KiB
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./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
|
|
];
|
|
|
|
stateVersion = "23.11";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
# ── whatsie insecure ──────────────────────────────────────────────────
|
|
nixpkgs.config = {
|
|
allowUnfree = true;
|
|
permittedInsecurePackages = [
|
|
"electron-32.3.3"
|
|
"qtwebengine-5.15.19"
|
|
];
|
|
};
|
|
}
|