nixos-config/home/x/default.nix

13 lines
191 B
Nix
Raw Normal View History

2021-04-19 14:29:38 +02:00
{ config, lib, pkgs, ... }:
{
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
];
options.my.home.x = with lib; {
enable = mkEnableOption "X server configuration";
};
}