mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
[SECRETS] Now functional!
This commit is contained in:
parent
aa266cc383
commit
a1f1dee6a1
11 changed files with 274 additions and 19 deletions
13
modules/nixos/scalpels.nix
Normal file
13
modules/nixos/scalpels.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib.types) listOf path;
|
||||
inherit (lib.options) mkOption;
|
||||
in {
|
||||
options.scalpels = mkOption {
|
||||
type = listOf path;
|
||||
default = [];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue