nixos-config/home/x/default.nix

22 lines
241 B
Nix
Raw Normal View History

2021-04-19 14:29:38 +02:00
{
2022-04-10 11:54:58 +02:00
config,
lib,
pkgs,
...
}: let
inherit
(lib)
mkEnableOption
;
in {
2021-04-19 14:29:38 +02:00
imports = [
2021-04-21 18:53:21 +02:00
./cursor.nix
2021-04-19 14:29:38 +02:00
./i3.nix
2021-04-19 14:58:52 +02:00
./i3bar.nix
2021-04-19 14:29:38 +02:00
];
2022-01-11 16:08:21 +01:00
options.my.home.x = {
2021-04-19 14:29:38 +02:00
enable = mkEnableOption "X server configuration";
};
}