nixos/none: don't pull in feh unconditionally

This commit is contained in:
tv 2021-01-25 01:42:51 +01:00
parent 6a29e8bfcc
commit 46f57b4388
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,5 @@
{
imports = [
./none.nix
];
}

View File

@ -0,0 +1,11 @@
# Replace upstream none desktop-manager by a real none, that doesn't pull in
# any dependencies.
with import <stockholm/lib>;
{
disabledModules = singleton "services/x11/desktop-managers/none.nix";
config.services.xserver.desktopManager.session = singleton {
name = "none";
bgSupport = true;
start = "";
};
}