305 current 2025-01-25 21:36:27 25.05.20241217.d3c42f1 6.6.66 *

This commit is contained in:
2025-01-25 22:05:27 -05:00
parent 49b85023ec
commit 16a0fe100a
2 changed files with 35 additions and 8 deletions

View File

@@ -10,26 +10,25 @@
inputs.nixpkgs.follows = "nixpkgs";
};
# old
# nur = {
# url = "github:nix-community/NUR";
# inputs.nixpkgs.follows = "nixpkgs";
# };
haumea = {
url = "github:nix-community/haumea/v0.2.2";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs @ {
flake-parts,
self,
haumea,
nixpkgs,
...
}:
flake-parts.lib.mkFlake {inherit inputs;} {
imports = [
# To import a flake module
# 1. Add foo to inputs
# 2. Add foo as a parameter to the outputs function
# 3. Add here: foo.flakeModule
#cajun-xmonad.default
];
systems = ["x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin"];
perSystem = {
config,
@@ -49,6 +48,12 @@
formatter = pkgs.alejandra;
};
flake = {
lib = haumea.lib.load {
scripts = ./scripts;
inputs = {
inherit (nixpkgs) lib;
};
};
# The usual flake attributes can be defined here, including system-
# agnostic ones like nixosModule and system-enumerating ones, although
# those are more easily expressed in perSystem.