1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Add plymouth to stel-xps boot options

This commit is contained in:
Stefan Ellmauthaler 2022-06-21 10:27:45 +02:00
parent 16ea04203e
commit 0bbd758ec5
Failed to extract signature

View File

@ -1,4 +1,4 @@
{ config, pkgs, inputs, nixos-hardware, ...}:
{ config, pkgs, inputs, nixos-hardware, ... }:
{
imports = [
../../common/users.nix
@ -21,7 +21,7 @@
graphical = {
enable = true;
# set dpi if used in mobile applications
# dpi = 180;
# dpi = 180;
};
# enable deamon to generate nix-index-db
@ -34,7 +34,7 @@
sops = {
enable = true;
};
# user setup
users = {
enable = true;
@ -51,13 +51,16 @@
};
};
boot.extraModulePackages = [
config.boot.kernelPackages.v4l2loopback
];
boot = {
extraModulePackages = [
config.boot.kernelPackages.v4l2loopback
];
boot.kernelModules = [
kernelModules = [
"v4l2loopback"
];
];
plymouth.enable = true;
};
services.xserver.desktopManager.wallpaper.mode = "fill";
}