diff options
| author | Fuwn <[email protected]> | 2024-09-30 23:19:46 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-30 23:19:46 -0700 |
| commit | bc1a46ec0e37eb5d058e18cb901da9b8f7681f34 (patch) | |
| tree | a367dea8f03624494a93fe80b0f65b9c9a09ab3c /hosts/default.nix | |
| parent | fina: add initial hashed password (diff) | |
| download | nixos-config-bc1a46ec0e37eb5d058e18cb901da9b8f7681f34.tar.xz nixos-config-bc1a46ec0e37eb5d058e18cb901da9b8f7681f34.zip | |
fina: add core modules
Diffstat (limited to 'hosts/default.nix')
| -rw-r--r-- | hosts/default.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/hosts/default.nix b/hosts/default.nix index ffe2153..2be5a49 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -63,13 +63,17 @@ in }; fina = nixosSystem { - modules = [ ./fina ]; - pkgs = (kansaiPkgs { nixpkgsAllowUnfree = true; })."x86_64-linux"; + modules = with inputs; [ + ./fina + nix-index-database.nixosModules.nix-index + sops-nix.nixosModules.sops + ]; + specialArgs = { inherit inputs |