mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
Refactor using flake-parts (#4)
Reviewed-on: https://git.earth2077.fr/leana/.files/pulls/4 Co-authored-by: Léana 江 <leana.jiang@icloud.com> Co-committed-by: Léana 江 <leana.jiang@icloud.com>
This commit is contained in:
parent
06f76e0a37
commit
db5aaa5811
17 changed files with 343 additions and 294 deletions
13
nix/lib/options.nix
Normal file
13
nix/lib/options.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
_module.args.defaultOptions =
|
||||
{ lib, ... }:
|
||||
{
|
||||
options = {
|
||||
cmus.enable = lib.mkOption { default = false; };
|
||||
extraUtils.enable = lib.mkOption { default = false; };
|
||||
extraLanguageServers.enable = lib.mkOption { default = false; };
|
||||
universityTools.enable = lib.mkOption { default = false; };
|
||||
git.signCommits = lib.mkOption { default = false; };
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue