From 8e257fbbfedb8a6c0a45ecb9bbdab47ce036c62f Mon Sep 17 00:00:00 2001 From: aaron Date: Fri, 21 Nov 2025 20:27:55 +0100 Subject: [PATCH] refactor: switch home-manager to standalone install --- hosts/default/configuration.nix | 3 +-- hosts/default/home.nix | 12 ++++++------ 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index 0d8252d..46b7577 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -1,12 +1,11 @@ # 0x29a nixos conifg -{ pkgs, lib, inputs, ... }: +{ pkgs, lib, ... }: { imports = [ ./hardware-configuration.nix - inputs.home-manager.nixosModules.default ]; # use flakes diff --git a/hosts/default/home.nix b/hosts/default/home.nix index 9426234..80f1cce 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -45,12 +45,12 @@ userEmail = "aaron@0x29a.ch"; }; - # deploy qtile config - home.file."qtile-config" = { - target = ".config/qtile/config.py"; - source = "${inputs.qtile-config}/qtile_config/config.py"; - force = true; - }; + ## deploy qtile config + #home.file."qtile-config" = { + # target = ".config/qtile/config.py"; + # source = "${inputs.qtile-config}/qtile_config/config.py"; + # force = true; + #}; home.sessionVariables = { EDITOR = "vim";