From b06a0dcce60cd277500fbd69600ac7aa92fef6b2 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sat, 29 Jul 2023 10:47:34 +0800 Subject: [PATCH] config: update home-manager configs for non-NixOS systems --- flake.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/flake.nix b/flake.nix index 066ef2c2..0a8347a8 100644 --- a/flake.nix +++ b/flake.nix @@ -345,6 +345,11 @@ # Setting the homely options. home.username = metadata.username or name; home.homeDirectory = metadata.home-directory or "/home/${config.home.username}"; + + # home-manager configurations are expected to be deployed on + # non-NixOS systems so it is safe to set this. + programs.home-manager.enable = true; + targets.genericLinux.enable = true; }) userSharedConfig path