mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 04:39:40 +00:00
23 lines
411 B
Nix
23 lines
411 B
Nix
{ lib, ... }: with lib; let
|
|
in
|
|
{
|
|
imports = [
|
|
./git.nix
|
|
];
|
|
|
|
options.myOptions.home-manager = {
|
|
enabled = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = "Should home-manager be enabled for this host?";
|
|
};
|
|
|
|
stateVersion = mkOption {
|
|
type = types.str;
|
|
default = config.system.nixos;
|
|
description = "HomeManager's state version";
|
|
};
|
|
};
|
|
}
|
|
|