From 279ff6251173e161cc50d8ae03cb3cd2e90a61a4 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Mon, 3 Jun 2024 18:28:35 +0530 Subject: global: init global contains shared data between home-manager and nixos modules. they're just structured data, it's doesn't contain any module functionally in the normal sense, an example is preferred monospace font or user's mail id `config.global.userdata.email` --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index f93be2e..f6d8161 100644 --- a/flake.nix +++ b/flake.nix @@ -26,7 +26,7 @@ nix.nixPath = [ "nixpkgs=${nixpkgs}" ]; } - ./userdata.nix + ./global ./os/${host}/configuration.nix sops-nix.nixosModules.sops ]; @@ -35,7 +35,7 @@ makeHome = useType: system: home-manager.lib.homeManagerConfiguration { pkgs = nixpkgs.legacyPackages.${system}; modules = [ - ./userdata.nix + ./global ./home/${useType}/home.nix ]; }; -- cgit v1.2.3