diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-05-14 15:20:22 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-05-15 07:14:47 -0500 |
commit | e646f99ea91a7cd396e9a8e41ce510c10460af61 (patch) | |
tree | 9aab23fe6f05143b69029be0f0a803be61c9f08b /flake.nix | |
parent | 9ac94ce13cafeed70d0e877101289ac07afbb445 (diff) | |
download | nixos-config-e646f99ea91a7cd396e9a8e41ce510c10460af61.tar.gz nixos-config-e646f99ea91a7cd396e9a8e41ce510c10460af61.zip |
hosts/muspell: Add initial configuration
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -3,10 +3,16 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11"; + mobile-nixos = { + url = "github:mobile-nixos/mobile-nixos"; + flake = false; + }; }; - outputs = { self, nixpkgs }: { + outputs = { self, nixpkgs, mobile-nixos }: { nixosConfigurations = - import ./hosts { inherit nixpkgs; }; + import ./hosts { + inherit nixpkgs mobile-nixos; + }; }; } |