wip: dnsc-machine setup

This commit is contained in:
Dennis Schoepf 2025-11-24 00:54:37 +01:00
parent 088a3b1c8e
commit f6408a8dcc
2 changed files with 6 additions and 2 deletions

View file

@ -12,7 +12,10 @@
nix-darwin.inputs.nixpkgs.follows = "nixpkgs"; nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
ip-whitelist.url = "github:Oak-Digital/nixos-ip-whitelist-firewall"; ip-whitelist.url = "github:Oak-Digital/nixos-ip-whitelist-firewall";
nix-homebrew.url = "github:zhaofengli/nix-homebrew"; nix-homebrew.url = "github:zhaofengli/nix-homebrew";
ironbar.url = "github:JakeStanger/ironbar"; ironbar = {
url = "github:JakeStanger/ironbar";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = outputs =
@ -23,6 +26,7 @@
nix-darwin, nix-darwin,
nix-homebrew, nix-homebrew,
agenix, agenix,
ironbar
... ...
}@inputs: }@inputs:
let let
@ -34,6 +38,7 @@
specialArgs = { inherit inputs outputs; }; specialArgs = { inherit inputs outputs; };
modules = [ modules = [
./hosts/dnsc-machine ./hosts/dnsc-machine
ironbar.homeManagerModules.default
]; ];
}; };

View file

@ -38,6 +38,5 @@
} }
''; '';
package = inputs.ironbar; package = inputs.ironbar;
features = ["feature" "another_feature"];
}; };
} }