config/env/x11/default.nix

19 lines
328 B
Nix

{pkgs, ...}: {
environment.etc."greetd/environments".text = ''
bspwm
Hyprland
'';
services = {
greetd = {
enable = true;
settings = rec {
initial_session = {
command = "bspwm";
user = "zack";
};
default_session = initial_session;
};
};
};
}