fix!: fixed startup not working

This commit is contained in:
Nickiel12 2023-02-16 20:09:02 -08:00
parent f4250156a5
commit 5998ea0bdd
2 changed files with 8 additions and 8 deletions

View file

@ -12,6 +12,10 @@ let
local_user = "nicholix"; local_user = "nicholix";
in in
{ {
xsession = {
enable = true;
windowManager.awesome.enable = true;
};
imports = [ imports = [
../modules/emacs.nix ../modules/emacs.nix
../modules/git.nix ../modules/git.nix
@ -87,8 +91,4 @@ in
NIX_SHELL_PRESERVE_PROMPT = 1; NIX_SHELL_PRESERVE_PROMPT = 1;
}; };
}; };
xsession = {
enable = true;
windowManager.command = "none+awesome-wm";
};
} }

View file

@ -10,6 +10,10 @@ let
); );
in in
{ {
xsession = {
enable = true;
windowManager.command = "startplasma-x11";
};
imports = [ imports = [
../modules/emacs.nix ../modules/emacs.nix
@ -96,8 +100,4 @@ in
}; };
}; };
xsession = {
enable = true;
windowManager.command = "plasma5-session";
};
} }