diff --git a/flake.lock b/flake.lock index efc8aa7..83a3a3c 100644 --- a/flake.lock +++ b/flake.lock @@ -340,6 +340,26 @@ "type": "github" } }, + "nix-index-database": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1695526222, + "narHash": "sha256-/NwZz3QcVplrfiDKk1thYg1EIHLSNucVHNUi2uwO3RI=", + "owner": "nix-community", + "repo": "nix-index-database", + "rev": "25d6369c232bbea1ec1f90226fd17982e7a0a647", + "type": "github" + }, + "original": { + "owner": "nix-community", + "repo": "nix-index-database", + "type": "github" + } + }, "nix-software-center": { "inputs": { "nixpkgs": [ @@ -453,6 +473,7 @@ "hypr-contrib": "hypr-contrib", "hyprland": "hyprland", "nix-but-gigachad": "nix-but-gigachad", + "nix-index-database": "nix-index-database", "nix-software-center": "nix-software-center", "nixos-hardware": "nixos-hardware", "nixpkgs": "nixpkgs", diff --git a/flake.nix b/flake.nix index d93c812..fec79e0 100644 --- a/flake.nix +++ b/flake.nix @@ -39,6 +39,10 @@ url = "github:Ultra980/everblush-gtk-flake"; inputs.nixpkgs.follows = "nixpkgs"; }; + nix-index-database = { + url = "github:nix-community/nix-index-database"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = { self, nixpkgs, home-manager, ... }@inputs: { diff --git a/users/ultra/home.nix b/users/ultra/home.nix index dd7ca01..b99ebad 100644 --- a/users/ultra/home.nix +++ b/users/ultra/home.nix @@ -20,6 +20,7 @@ let in { imports = [ inputs.hyprland.homeManagerModules.default + inputs.nix-index-database.hmModules.nix-index ]; # Allow unfree packages nixpkgs.config.allowUnfree = true; @@ -265,7 +266,11 @@ in { }; }; }; - + nix-index-database = { + comma = { + enable = true; + }; + }; }; services = { dunst.enable = false;