summaryrefslogtreecommitdiff
path: root/hm/env/fsel.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2026-03-15 22:13:15 +0100
committeradikro <adikro@disroot.org>2026-03-15 22:13:15 +0100
commit18f08bf53591f3e68043730a627889957009deb6 (patch)
tree228a31ab5489e98253e963424cd064d57dcd7a6e /hm/env/fsel.nix
parent8eb0e90219a4de87d8d476e15329e14720f091c6 (diff)
browser stuff
Diffstat (limited to 'hm/env/fsel.nix')
-rw-r--r--hm/env/fsel.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/hm/env/fsel.nix b/hm/env/fsel.nix
new file mode 100644
index 0000000..faa7f24
--- /dev/null
+++ b/hm/env/fsel.nix
@@ -0,0 +1,16 @@
+{
+ inputs,
+ config,
+ lib,
+ pkgs,
+ ...
+}:
+let
+ cfg = config.hm.env.fsel;
+in
+{
+ options.hm.env.fsel.enable = lib.mkEnableOption "enables fsel";
+ config = lib.mkIf cfg.enable {
+ home.packages = [ inputs.fsel.packages.${pkgs.stdenv.hostPlatform.system}.default ];
+ };
+}