blob: 1608693ff02fc1a44ff8b7f11b9a8f64e0023c0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ config, lib, pkgs, ... }:
with lib; let
cfg = config.local.desktop;
in
{
imports = [
./firefox.nix
./sway.nix
];
options.local.desktop = {
enable = mkEnableOption "desktop";
};
}
|