Revert "nixos/none: remove"
This commit is contained in:
parent
f75c11cfdf
commit
60a1732276
@ -907,6 +907,7 @@
|
|||||||
./services/x11/window-managers/icewm.nix
|
./services/x11/window-managers/icewm.nix
|
||||||
./services/x11/window-managers/bspwm.nix
|
./services/x11/window-managers/bspwm.nix
|
||||||
./services/x11/window-managers/metacity.nix
|
./services/x11/window-managers/metacity.nix
|
||||||
|
./services/x11/window-managers/none.nix
|
||||||
./services/x11/window-managers/twm.nix
|
./services/x11/window-managers/twm.nix
|
||||||
./services/x11/window-managers/windowlab.nix
|
./services/x11/window-managers/windowlab.nix
|
||||||
./services/x11/window-managers/wmii.nix
|
./services/x11/window-managers/wmii.nix
|
||||||
|
@ -18,7 +18,7 @@ in
|
|||||||
# determines the default: later modules (if enabled) are preferred.
|
# determines the default: later modules (if enabled) are preferred.
|
||||||
# E.g., if Plasma 5 is enabled, it supersedes xterm.
|
# E.g., if Plasma 5 is enabled, it supersedes xterm.
|
||||||
imports = [
|
imports = [
|
||||||
./xterm.nix ./xfce.nix ./plasma5.nix ./lumina.nix
|
./none.nix ./xterm.nix ./xfce.nix ./plasma5.nix ./lumina.nix
|
||||||
./lxqt.nix ./enlightenment.nix ./gnome3.nix ./kodi.nix ./maxx.nix
|
./lxqt.nix ./enlightenment.nix ./gnome3.nix ./kodi.nix ./maxx.nix
|
||||||
./mate.nix ./pantheon.nix ./surf-display.nix ./cde.nix
|
./mate.nix ./pantheon.nix ./surf-display.nix ./cde.nix
|
||||||
];
|
];
|
||||||
|
7
nixos/modules/services/x11/desktop-managers/none.nix
Normal file
7
nixos/modules/services/x11/desktop-managers/none.nix
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
services.xserver.desktopManager.session =
|
||||||
|
[ { name = "none";
|
||||||
|
start = "";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
@ -35,7 +35,7 @@ in
|
|||||||
./wmii.nix
|
./wmii.nix
|
||||||
./xmonad.nix
|
./xmonad.nix
|
||||||
./qtile.nix
|
./qtile.nix
|
||||||
];
|
./none.nix ];
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
|
|
||||||
|
12
nixos/modules/services/x11/window-managers/none.nix
Normal file
12
nixos/modules/services/x11/window-managers/none.nix
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
services = {
|
||||||
|
xserver = {
|
||||||
|
windowManager = {
|
||||||
|
session = [{
|
||||||
|
name = "none";
|
||||||
|
start = "";
|
||||||
|
}];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user