Compare commits

..

No commits in common. "27ece0ea89c14e27869beee20dc13b03dbc950fa" and "0b4fcc6c33f647995d0dc54e17998b0ec5fe84e2" have entirely different histories.

3 changed files with 5 additions and 20 deletions

View File

@ -156,13 +156,6 @@ with pkgs;
# Enable fish package completion # Enable fish package completion
programs.fish.enable = true; programs.fish.enable = true;
# Enable nix-index
programs.command-not-found.enable = false;
programs.nix-index = {
enable = true;
enableFishIntegration = true;
};
# Import other configuration modules # Import other configuration modules
imports = [ imports = [
./modules/hardware-configuration.nix ./modules/hardware-configuration.nix

View File

@ -61,11 +61,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1675942811, "lastModified": 1675763311,
"narHash": "sha256-/v4Z9mJmADTpXrdIlAjFa1e+gkpIIROR670UVDQFwIw=", "narHash": "sha256-bz0Q2H3mxsF1CUfk26Sl9Uzi8/HFjGFD/moZHz1HebU=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "724bfc0892363087709bd3a5a1666296759154b1", "rev": "fab09085df1b60d6a0870c8a89ce26d5a4a708c2",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -23,13 +23,9 @@
url = "github:robn/sasl2-oauth"; url = "github:robn/sasl2-oauth";
flake = false; flake = false;
}; };
nix-index-database = {
url = "github:Mic92/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = { self, nixpkgs, agenix, nix-index-database, ... }@inputs: outputs = { self, nixpkgs, agenix, ... }@inputs:
let let
system = "x86_64-linux"; system = "x86_64-linux";
@ -40,11 +36,7 @@
in { in {
nixosConfigurations.panacea = lib.nixosSystem { nixosConfigurations.panacea = lib.nixosSystem {
inherit system; inherit system;
modules = [ modules = [ (import ./configuration.nix) agenix.nixosModules.age ];
(import ./configuration.nix)
agenix.nixosModules.age
nix-index-database.nixosModules.nix-index
];
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
}; };