From e367fe7769d197d84fdcd02455dd1afacd200b65 Mon Sep 17 00:00:00 2001 From: kiri Date: Sat, 28 Feb 2026 14:42:54 +0100 Subject: [PATCH] Second commit --- modules/dendritic.nix | 2 +- modules/vm.nix | 24 ------------------------ 2 files changed, 1 insertion(+), 25 deletions(-) delete mode 100644 modules/vm.nix diff --git a/modules/dendritic.nix b/modules/dendritic.nix index 8e93b65..6d524dd 100644 --- a/modules/dendritic.nix +++ b/modules/dendritic.nix @@ -1,7 +1,7 @@ { inputs, ... }: { imports = [ - (inputs.den.flakeModules.dendritic or { }) + inputs.den.flakeModule (inputs.den.namespace "lux" true) ]; } diff --git a/modules/vm.nix b/modules/vm.nix deleted file mode 100644 index 9db2fbd..0000000 --- a/modules/vm.nix +++ /dev/null @@ -1,24 +0,0 @@ -# enables `nix run .#vm`. it is very useful to have a VM -# you can edit your config and launch the VM to test stuff -# instead of having to reboot each time. -{ inputs, den, ... }: -{ - - # USER TODO: remove this tty-autologin used for the VM - den.aspects.igloo.includes = [ (den.provides.tty-autologin "tux") ]; - - perSystem = - { pkgs, ... }: - { - packages.vm = pkgs.writeShellApplication { - name = "vm"; - text = - let - host = inputs.self.nixosConfigurations.igloo.config; - in - '' - ${host.system.build.vm}/bin/run-${host.networking.hostName}-vm "$@" - ''; - }; - }; -}