home: basic i3 setup

This commit is contained in:
Antoine Martin 2021-04-19 14:29:38 +02:00
parent 5c86bdd16a
commit 73e1ff6c0f
5 changed files with 100 additions and 0 deletions

10
home/x/default.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
{
imports = [
./i3.nix
];
options.my.home.x = with lib; {
enable = mkEnableOption "X server configuration";
};
}