nixos: move plymouth to ./presets/desktop

This commit is contained in:
Guanran Wang 2023-11-09 12:06:36 +08:00
parent 65a8502ecb
commit 36bea2b498
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8
4 changed files with 1 additions and 5 deletions

View file

@ -1,7 +1,6 @@
{...}: {
imports = [
./boot.nix
./plymouth.nix
./sysctl.nix
];
}

View file

@ -1,3 +0,0 @@
{lib, ...}: {
boot.plymouth.enable = lib.mkDefault true; # mkDefault for headless devices, check out server.nix
}

View file

@ -5,4 +5,5 @@
];
boot.kernelPackages = pkgs.linuxPackages_zen;
boot.plymouth.enable = true;
}

View file

@ -4,5 +4,4 @@
imports = [
./core.nix
];
boot.plymouth.enable = false;
}