mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 13:12:10 -08:00
23 lines
400 B
Nix
23 lines
400 B
Nix
|
{
|
||
|
osConfig,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
imports = [
|
||
|
./hyprland
|
||
|
./waybar
|
||
|
./swaync.nix
|
||
|
];
|
||
|
|
||
|
options.liminalOS.desktop = {
|
||
|
enable = lib.mkOption {
|
||
|
type = lib.types.bool;
|
||
|
default = osConfig.liminalOS.desktop.enable;
|
||
|
description = ''
|
||
|
Whether to enable the default configuration for the userland portions of the liminalOS desktop environment.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|