test helium

This commit is contained in:
2026-03-09 11:45:56 +00:00
parent 8bd2cb2112
commit b55c7a382d
5 changed files with 37 additions and 2 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
{inputs,}: {
{inputs,...}: {
flake.nixosModules.browsers = {pkgs,...}: {
programs.firefox.enable = true;
}
};
}
+1
View File
@@ -2,6 +2,7 @@
flake.nixosConfigurations.nixos = inputs.nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
self.nixosModules.overlay
self.nixosModules.nixos-host
self.nixosModules.ui
self.nixosModules.packages
+9
View File
@@ -0,0 +1,9 @@
{ inputs, ... }: {
flake.nixosModules.overlay = { pkgs, ... }: {
nixpkgs.overlays = [
(final: prev: {
helium = pkgs.callPackage ../pkgs/helium.nix { };
})
];
};
}
+3
View File
@@ -21,6 +21,9 @@
quickshell
rofi
slack
feishin
nixd
helium
];
};
}