This commit is contained in:
2026-02-19 20:23:58 +02:00
parent 1c56b0c1e5
commit 5b4f973d53
4 changed files with 62 additions and 18 deletions

View File

@@ -3,11 +3,18 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
wafrn-src = {
url = "git+https://codeberg.org/wafrn/wafrn?ref=main";
flake = false;
};
};
outputs = { self, ... }: {
outputs = { self, wafrn-src, ... }: {
nixosModules = {
wafrn = import ./modules/wafrn.nix;
wafrn = { ... }: {
imports = [ ./modules/wafrn.nix ];
_module.args.wafrnSrc = wafrn-src;
};
default = self.nixosModules.wafrn;
};
};