summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 1f8451b..1f392fc 100644
--- a/flake.nix
+++ b/flake.nix
@@ -12,6 +12,9 @@
# Disko
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
+
+ # Musnix
+ musnix.url = "github:musnix/musnix";
};
outputs = {
@@ -28,7 +31,10 @@
nixosConfigurations = {
sol = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;};
- modules = [./hosts/sol/configuration.nix];
+ modules = [
+ inputs.musnix.nixosModules.musnix
+ ./hosts/sol/configuration.nix
+ ];
};
luna = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;};