mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
Add Plymouth for a password prompt with graphics
This commit is contained in:
parent
40d89ce488
commit
8680b33910
1 changed files with 15 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
# ./hardware-configuration.nix
|
# ./hardware-configuration.nix
|
||||||
|
./swingmusic/swingmusic.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Latest kernel
|
# Latest kernel
|
||||||
|
@ -15,6 +16,10 @@
|
||||||
systemd-boot.configurationLimit = 10;
|
systemd-boot.configurationLimit = 10;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
boot.plymouth.enable = true;
|
||||||
|
boot.initrd.systemd.enable = true;
|
||||||
|
boot.kernelParams = [ "quiet" ];
|
||||||
|
|
||||||
#nix.settings.auto-optimise-store = true;
|
#nix.settings.auto-optimise-store = true;
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
|
||||||
|
@ -65,6 +70,13 @@
|
||||||
unzip
|
unzip
|
||||||
wget
|
wget
|
||||||
xz
|
xz
|
||||||
|
zlib
|
||||||
|
];
|
||||||
|
|
||||||
|
programs.nix-ld.enable = true;
|
||||||
|
programs.nix-ld.libraries = with pkgs; [
|
||||||
|
# Add any missing dynamic libraries for unpackaged programs
|
||||||
|
# here, NOT in environment.systemPackages
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable/Disable hardware
|
# Enable/Disable hardware
|
||||||
|
@ -105,6 +117,8 @@
|
||||||
hardware.sane.extraBackends = [ pkgs.sane-airscan ];
|
hardware.sane.extraBackends = [ pkgs.sane-airscan ];
|
||||||
services.ipp-usb.enable = true;
|
services.ipp-usb.enable = true;
|
||||||
|
|
||||||
|
services.hardware.bolt.enable = true;
|
||||||
|
|
||||||
system.activationScripts.diff = {
|
system.activationScripts.diff = {
|
||||||
supportsDryActivation = true;
|
supportsDryActivation = true;
|
||||||
text = ''
|
text = ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue