From b7c27b53fa40d4933703dd14a5a21020dd99f339 Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Mon, 10 Nov 2025 17:55:58 +0100 Subject: [PATCH] Move 'vm' host home into home manager flake --- hosts/vm/home.nix => home/hosts/vm/default.nix | 12 ++++++------ hosts/vm/configuration.nix | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) rename hosts/vm/home.nix => home/hosts/vm/default.nix (79%) diff --git a/hosts/vm/home.nix b/home/hosts/vm/default.nix similarity index 79% rename from hosts/vm/home.nix rename to home/hosts/vm/default.nix index c130782..c10365c 100644 --- a/hosts/vm/home.nix +++ b/home/hosts/vm/default.nix @@ -78,13 +78,13 @@ ]; home.file = { - ".inputrc".source = ../../dots/.inputrc; - ".bashrc.d/prompt".source = ../../dots/.bashrc.d/prompt; - ".bashrc.d/editor".source = ../../dots/.bashrc.d/editor; - ".config/kitty/kitty.conf".source = ../../dots/.config/kitty/kitty.conf; + ".inputrc".source = ../../../dots/.inputrc; + ".bashrc.d/prompt".source = ../../../dots/.bashrc.d/prompt; + ".bashrc.d/editor".source = ../../../dots/.bashrc.d/editor; + ".config/kitty/kitty.conf".source = ../../../dots/.config/kitty/kitty.conf; ".config/kitty/themes/zenwritten_light.conf".source = - ../../dots/.config/kitty/themes/zenwritten_light.conf; + ../../../dots/.config/kitty/themes/zenwritten_light.conf; ".config/kitty/themes/zenwritten_dark.conf".source = - ../../dots/.config/kitty/themes/zenwritten_dark.conf; + ../../../dots/.config/kitty/themes/zenwritten_dark.conf; }; } diff --git a/hosts/vm/configuration.nix b/hosts/vm/configuration.nix index 0953f1a..bf77502 100644 --- a/hosts/vm/configuration.nix +++ b/hosts/vm/configuration.nix @@ -45,7 +45,7 @@ home-manager = { useGlobalPkgs = true; useUserPackages = true; - users.h = ./home.nix; + users.h = ../../home/hosts/vm; }; services.qemuGuest.enable = true;