nixos-config/home/x/default.nix

18 lines
227 B
Nix
Raw Normal View History

2021-04-19 14:29:38 +02:00
{ config, lib, pkgs, ... }:
2022-01-11 16:08:21 +01:00
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";
};
}