muhehe >:3

This commit is contained in:
benstrb 2026-03-24 23:49:16 +01:00
parent 2adaf45fd9
commit 08e6e2305d
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{inputs, ...}: {
flake.nixosModules.firefoxHelix = {pkgs, ...}: {
programs.firefox.enable = true;
environment.systemPackages = with pkgs; [
helix
];
};
}