summaryrefslogtreecommitdiff
path: root/home/desktop/default.nix
blob: d46e97efd00bdf22228ba2c223d130e1aa5fc769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  config,
  lib,
  pkgs,
  ...
}:
with lib; let
  cfg = config.local.desktop;
in {
  imports = [
    ./firefox.nix
    ./sway.nix
  ];

  options.local.desktop = {
    enable = mkEnableOption "desktop";
  };
}