mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-21 03:32:30 -05:00
test i3
This commit is contained in:
parent
8e3e165e34
commit
113be29171
6 changed files with 155 additions and 1 deletions
|
|
@ -4,7 +4,7 @@
|
|||
./wayland/sway.nix
|
||||
|
||||
# X11 desktops here
|
||||
# ./x11/i3.nix
|
||||
./x11/i3.nix
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
|||
12
modules/desktops/x11/i3.nix
Normal file
12
modules/desktops/x11/i3.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ inputs, pkgs, lib, config, ...}: {
|
||||
options.desktop.i3.enable = lib.mkEnableOption "enables i3";
|
||||
|
||||
config = {
|
||||
services.xserver = {
|
||||
displayManager.startx.enable = true;
|
||||
windowManager.i3 = {
|
||||
enable = true;
|
||||
configFile = "$HOME/.config/i3/config";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue