13 lines
191 B
Nix
13 lines
191 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./cursor.nix
|
|
./i3.nix
|
|
./i3bar.nix
|
|
];
|
|
|
|
options.my.home.x = with lib; {
|
|
enable = mkEnableOption "X server configuration";
|
|
};
|
|
}
|