2025-01-08 20:35:26 +08:00
|
|
|
{ inputs, lib, ... }:
|
2025-01-08 16:24:29 +08:00
|
|
|
{
|
2025-01-08 20:35:26 +08:00
|
|
|
imports =
|
|
|
|
|
(with inputs; [
|
|
|
|
|
sops-nix.homeManagerModules.sops
|
|
|
|
|
])
|
|
|
|
|
++ [
|
|
|
|
|
./nix.nix
|
2025-01-10 16:33:08 +08:00
|
|
|
./helix
|
2025-01-10 21:40:44 +08:00
|
|
|
./gpg
|
2025-01-10 23:35:56 +08:00
|
|
|
./git.nix
|
2025-01-08 20:35:26 +08:00
|
|
|
];
|
2025-01-08 16:24:29 +08:00
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
youthlic.nixos.enable = lib.mkOption {
|
|
|
|
|
type = lib.types.bool;
|
|
|
|
|
default = false;
|
|
|
|
|
example = true;
|
|
|
|
|
description = ''
|
|
|
|
|
whether the os is nixos
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|