nixos/home/modules/default.nix

25 lines
387 B
Nix
Raw Normal View History

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