ljkasdljkasdkljasdjl

This commit is contained in:
2025-08-10 02:35:35 +02:00
parent 88c2c9d1ee
commit 4c1f58dbb3
4 changed files with 7 additions and 5 deletions

View File

@@ -226,7 +226,7 @@
home = { inherit username homeDirectory; };
imports = [
inputs.sops-nix.homeManagerModules.sops
inputs.nix-index-database.hmModules.nix-index
inputs.nix-index-database.homeModules.nix-index
];
nixpkgs.overlays = [
self.overlays.pbsdspkgs

View File

@@ -23,7 +23,7 @@ let
home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.sharedModules = [
inputs.sops-nix.homeManagerModules.sops
inputs.nix-index-database.hmModules.nix-index
inputs.nix-index-database.homeModules.nix-index
];
# still needed even if using networkd

View File

@@ -64,8 +64,8 @@ in
# notifications
"org/gnome/desktop/notifications" = {
# "show-banners" = false; # do not disturb mode
"show-in-lock-screen" = false; # fucking matrix...
# show-banners = false; # do not disturb mode
show-in-lock-screen = false; # fucking matrix...
};
# wallpaper

View File

@@ -4,7 +4,9 @@
# nvd: https://discourse.nixos.org/t/nvd-simple-nix-nixos-version-diff-tool/12397
# module from https://infosec.exchange/@wyndon/110662698348958506
home.activation.diff-update = config.lib.dag.entryAnywhere ''
${pkgs.nvd}/bin/nvd diff $oldGenPath $newGenPath
if [[ -v oldGenPath ]]; then
${pkgs.nvd}/bin/nvd diff $oldGenPath $newGenPath
fi
'';
}