20 lines
328 B
Nix
20 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;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|