wip: dnsc-machine setup

This commit is contained in:
Dennis Schoepf 2025-12-16 23:26:26 +01:00
parent 604e582c01
commit a53696211b
2 changed files with 3 additions and 7 deletions

View file

@ -69,12 +69,6 @@
nixosConfigurations.dnsc-machine = nixpkgs.lib.nixosSystem { nixosConfigurations.dnsc-machine = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { inherit inputs outputs; }; specialArgs = { inherit inputs outputs; };
pkgs = import nixpkgs {
system = "x86_64-linux";
overlays = [
self.overlays.default
];
};
modules = [ modules = [
./hosts/dnsc-machine ./hosts/dnsc-machine
]; ];

View file

@ -3,6 +3,7 @@
inputs, inputs,
outputs, outputs,
pkgs, pkgs,
self,
... ...
}: }:
@ -26,8 +27,9 @@
# Device specific overlays # Device specific overlays
# Overlays for all devices are defined # Overlays for all devices are defined
# in modules/default.nix # in flake.nix
nixpkgs.overlays = [ nixpkgs.overlays = [
self.overlays.default
inputs.zellij-switch.overlays.default inputs.zellij-switch.overlays.default
]; ];