nix-index

Signed-off-by: Alex Stan <90788596+Ultra980@users.noreply.github.com>
This commit is contained in:
Alex Stan 2023-09-24 21:52:05 +03:00
parent bed35d5f2f
commit bc258b21e5
3 changed files with 31 additions and 1 deletions

View file

@ -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",

View file

@ -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: {

View file

@ -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;