From 1be972048dd58218cd689ecb5cac562eb398b751 Mon Sep 17 00:00:00 2001 From: Jakub Stachurski Date: Sun, 17 Aug 2025 11:25:33 +0200 Subject: refreshed config --- users/user-common.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 users/user-common.nix (limited to 'users/user-common.nix') diff --git a/users/user-common.nix b/users/user-common.nix new file mode 100644 index 0000000..4b60044 --- /dev/null +++ b/users/user-common.nix @@ -0,0 +1,16 @@ +{pkgs, config, ...}: { + # Pass host config to HM (Common config) + # TODO: Move this somewhere else. + home-manager = { + useUserPackages = true; + useGlobalPkgs = true; + backupFileExtension = "bak"; + + sharedModules = [ + ({ ...}: { + _module.args.hostconfig = config; + + }) + ]; + }; +} -- cgit v1.3.1