mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:19:41 +00:00
22 lines
376 B
Nix
22 lines
376 B
Nix
{ lib, ... }: with lib; let
|
|
inherit (lib) mkEnableOption mkOption;
|
|
in
|
|
{
|
|
imports = [
|
|
./programs
|
|
./git.nix
|
|
./wms.nix
|
|
];
|
|
|
|
options.myOptions.home-manager = {
|
|
enable = mkEnableOption "home-manager";
|
|
|
|
stateVersion = mkOption {
|
|
type = types.str;
|
|
default = config.system.nixos;
|
|
description = "HomeManager's state version";
|
|
};
|
|
};
|
|
}
|
|
|