feat: move to stable

This commit is contained in:
zack 2024-09-12 19:29:12 -04:00
parent 31d2590613
commit 1a5c9794aa
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35
11 changed files with 81 additions and 44 deletions

View file

@ -1,4 +1,8 @@
{lib, ...}:
{
lib,
inputs,
...
}:
with lib; rec {
mkOpt = type: default: description:
mkOption {inherit type default description;};
@ -11,6 +15,11 @@ with lib; rec {
mkBoolOpt' = mkOpt' types.bool;
pkgs-unstable = import inputs.nixpkgs-unstable {
system = "x86_64-linux";
config.allowUnfree = true;
};
enabled = {enable = true;};
disabled = {enable = false;};