diff --git a/flake.nix b/flake.nix index 9dd8319..eb498d0 100644 --- a/flake.nix +++ b/flake.nix @@ -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 diff --git a/hosts/default.nix b/hosts/default.nix index 0d2e03c..a649c56 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -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 diff --git a/users/pbsds/home/profiles/desktop/gnome/default.nix b/users/pbsds/home/profiles/desktop/gnome/default.nix index 9a6f076..fedcd92 100644 --- a/users/pbsds/home/profiles/desktop/gnome/default.nix +++ b/users/pbsds/home/profiles/desktop/gnome/default.nix @@ -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 diff --git a/users/pbsds/home/profiles/update-diff.nix b/users/pbsds/home/profiles/update-diff.nix index 4aa195c..51e2b06 100644 --- a/users/pbsds/home/profiles/update-diff.nix +++ b/users/pbsds/home/profiles/update-diff.nix @@ -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 ''; }