Initial commit

This commit is contained in:
2025-09-01 14:21:12 +03:00
commit 5787dcd528
47 changed files with 3079 additions and 0 deletions

14
options.nix Normal file
View File

@@ -0,0 +1,14 @@
{ lib, ... }:
{
options = {
swappiness = lib.mkOption {
type = lib.types.int;
default = 10;
};
hm = lib.mkOption {
type = lib.types.attrsOf lib.types.anything;
default = { };
};
};
}