mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 00:57:22 +01:00
18 lines
396 B
Nix
18 lines
396 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.swarselprofiles.uni = lib.mkEnableOption "is this a uni host";
|
|
config = lib.mkIf config.swarselprofiles.uni {
|
|
# swarselmodules = {
|
|
# optional = {
|
|
# uni = lib.mkDefault true;
|
|
# };
|
|
# };
|
|
home-manager.users."${config.swarselsystems.mainUser}" = {
|
|
swarselprofiles = {
|
|
uni = lib.mkDefault true;
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
}
|