diff options
| author | Baitinq <[email protected]> | 2022-07-08 12:29:43 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-07-08 12:29:43 +0200 |
| commit | c526785d9bd97a2fd6557bed3ee1a45d14be9168 (patch) | |
| tree | 2d9eb7aaec7ef7a2f66d95aa622c031316533fc7 /flake.nix | |
| parent | XMobar: Fix wrong offset in createDwmBox (diff) | |
| download | nixos-config-c526785d9bd97a2fd6557bed3ee1a45d14be9168.tar.gz nixos-config-c526785d9bd97a2fd6557bed3ee1a45d14be9168.tar.bz2 nixos-config-c526785d9bd97a2fd6557bed3ee1a45d14be9168.zip | |
Misc: Dont pass nur input directly
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix index 016ed06..9341314 100644 --- a/flake.nix +++ b/flake.nix @@ -8,16 +8,17 @@ inputs.nixpkgs.follows = "nixpkgs"; }; nur.url = "github:nix-community/NUR"; + nix-index.url = "github:Mic92/nix-index-database"; }; - outputs = inputs @ { self, nixpkgs, home-manager, nur, ... }: + outputs = inputs @ { self, nixpkgs, home-manager, ... }: let user = "baitinq"; in { nixosConfigurations = import ./hosts { inherit (nixpkgs) lib; - inherit inputs nixpkgs home-manager nur user; + inherit inputs nixpkgs home-manager user; }; }; } |