This commit is contained in:
2025-01-24 16:18:14 -05:00
parent e52ddc3314
commit 41d3167311
13 changed files with 138 additions and 75 deletions

View File

@@ -12,6 +12,7 @@
# gpt4all broken https://github.com/NixOS/nixpkgs/pull/346185
./progs/gpt4all/gpt4all.nix
./progs/trezor.nix
];
nixpkgs.config.allowUnfreePredicate =
@@ -102,12 +103,19 @@
rawtherapee
hugin
# nufraw
nufraw-thumbnailer
gdk-pixbuf
nautilus
nufraw
enblend-enfuse
nerdfonts
savvycan
# simple screen recording on wayland
wl-screenrec
];
# ++ (builtins.filter lib.isDerivation (builtins.attrValues nerd-fonts));
@@ -126,6 +134,7 @@
"nix"
"sql"
"CSV"
"assembly"
];
};
@@ -171,14 +180,22 @@
};
};
#qt application theming
qt = {
enable = true;
style = {
name = "breeze-dark";
package = pkgs.kdePackages.breeze;
};
};
#qt application theming - BROKEN and on fire
# qt = {
# enable = true;
# platformTheme = {
# name = "adwaita";
# package = [
# pkgs.adwaita-qt
# pkgs.adwaita-qt6
# ];
# };
# style = {
# name = "adwaita-dark";
# package = pkgs.adwaita-qt;
# };
# };
#macOS cursor!
home.pointerCursor = {
@@ -187,4 +204,11 @@
name = "macOS";
size = 24;
};
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = [ "qemu:///system" ];
uris = [ "qemu:///system" ];
};
};
}