summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-01-30 08:44:54 -0500
committerGitHub <[email protected]>2025-01-30 13:44:54 +0000
commit83a7516b7f38b20265709e77daf387b62b488a88 (patch)
tree69ff889a7627a46d34bf3ab48f90ca03b99b9b18 /flake.nix
parent46f1cf5b41e06a833c2521a3eb2b71c6fcbc2f46 (diff)
nixos+home/firefox-addons: init (#138)
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 01fa364..f74d491 100644
--- a/flake.nix
+++ b/flake.nix
@@ -68,12 +68,17 @@
);
flakeModules = {
- checks = self + "./modules/flake/checks.nix";
- configs = self + "./modules/flake/configs.nix";
+ checks = self + "/modules/flake/checks.nix";
+ configs = self + "/modules/flake/configs.nix";
};
homeModules = {
riff = self + "/modules/home/riff.nix";
+ firefox-addons = self + "/modules/home/firefox-addons.nix";
+ };
+
+ nixosModules = {
+ firefox-addons = self + "/modules/nixos/firefox-addons.nix";
};
formatter = forTier1Systems (system: nixpkgsFor.${system}.nixfmt-rfc-style);