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

11
flake.nix Normal file
View file

@ -0,0 +1,11 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:/hercules-cli/flake-parts";
import-tree.url = "github:vic/import-tree";
};
outputs = inputs:
inputs.flake-parts.lib.mkFlake {inherit inputs;}
(inputs.import-tree ./modules);
}

View file

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