nixos-config/home/x/default.nix

12 lines
174 B
Nix
Raw Normal View History

2021-04-19 14:29:38 +02:00
{ config, lib, pkgs, ... }:
{
imports = [
./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";
};
}