diff options
| author | Seth Flynn <[email protected]> | 2025-03-04 13:05:35 -0500 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-03-04 13:05:35 -0500 |
| commit | 3d9f4f27d3fc5f41ed53263ba5d758aedeadbce5 (patch) | |
| tree | 465e0c9c2f764c563866110ea84ffd47b13afe35 /flake.nix | |
| parent | a69ac1ee37566dda8fe4bf90ed3f324b66b580d8 (diff) | |
flake: cleanup file paths
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 16 |
1 files changed, 4 insertions, 12 deletions
@@ -67,26 +67,18 @@ getchpkgs' // { default = getchpkgs'.treefetch or pkgs.emptyFile; } ); - flakeModules = { - checks = self + "/modules/flake/checks.nix"; - configurations = self + "/modules/flake/configurations.nix"; - }; + flakeModules = import ./modules/flake; - homeModules = { - arkenfox = self + "/modules/home/arkenfox"; - firefox-addons = self + "/modules/home/firefox-addons.nix"; - }; + homeModules = import ./modules/home; - nixosModules = { - firefox-addons = self + "/modules/nixos/firefox-addons.nix"; - }; + nixosModules = import ./modules/nixos; formatter = forTier1Systems (system: nixpkgsFor.${system}.nixfmt-rfc-style); templates = let toTemplate = name: description: { - path = self + "/templates/${name}"; + path = ./templates + "/${name}"; inherit description; }; in |
