From bc4d0c2aedb8c551fbcf0e9a8d3d1169f3513671 Mon Sep 17 00:00:00 2001 From: Dennis Schoepf Date: Tue, 16 Dec 2025 23:36:13 +0100 Subject: [PATCH] wip: dnsc-machine setup --- flake.nix | 8 -------- hosts/dnsc-machine/default.nix | 10 ++++++++++ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/flake.nix b/flake.nix index 7590181..f2beb50 100644 --- a/flake.nix +++ b/flake.nix @@ -60,14 +60,6 @@ specialArgs = { inherit inputs outputs; }; modules = [ ./hosts/dnsc-machine - { - nixpkgs.overlays = [ - inputs.zellij-switch.overlays.default - (final: prev: { - networkmanager = inputs.nixpkgs-backport-fix.legacyPackages.x86_64-linux.networkmanager; - }) - ]; - } ]; }; diff --git a/hosts/dnsc-machine/default.nix b/hosts/dnsc-machine/default.nix index c876bf5..748522a 100644 --- a/hosts/dnsc-machine/default.nix +++ b/hosts/dnsc-machine/default.nix @@ -24,6 +24,16 @@ outputs.nixosModules.steam ]; + # Device specific overlays + # Overlays for all devices are defined + # in flake.nix + nixpkgs.overlays = [ + inputs.zellij-switch.overlays.default + (final: prev: { + networkmanager = inputs.nixpkgs-backport-fix.legacyPackages.x86_64-linux.networkmanager; + }) + ]; + # General settings networking.hostName = "dnsc-machine"; time.timeZone = "Europe/Berlin";