bro ion even no

This commit is contained in:
strix 2026-08-25 14:00:05 +02:00
parent 69a92fdd5e
commit ed13a64d87
9 changed files with 215 additions and 22 deletions

View file

@ -1,9 +1,10 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
imports = [ ];
boot.loader.systemd-boot.enable = true;
boot.loader.timeout = 0;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
@ -11,15 +12,29 @@
boot.initrd.verbose = false;
boot.kernelParams = [
"quiet"
"udev.log_priority=3"
"rd.udev.log_level=3"
"rd.systemd.show_status=auto"
];
boot.initrd.checkJournalingFS = false;
boot.plymouth = {
enable = true;
theme = "bgrt";
package = pkgs.plymouth.overrideAttrs (old: {
postInstall = (old.postInstall or "") + ''
sed -i \
-e 's/DialogClearsFirmwareBackground=true/DialogClearsFirmwareBackground=false/' \
-e 's/DialogVerticalAlignment=.382/DialogVerticalAlignment=.55/' \
-e 's/TitleVerticalAlignment=.382/TitleVerticalAlignment=.55/' \
$out/share/plymouth/themes/bgrt/bgrt.plymouth
'';
});
};
networking.networkmanager.enable = true;
time.timeZone = "Europe/Amsterdam";
@ -66,8 +81,6 @@
programs.virt-manager.enable = true;
virtualisation.libvirtd.enable = true;
programs.command-not-found.enable = true;
nix = {
settings = {
auto-optimise-store = true;
@ -80,6 +93,7 @@
environment.systemPackages = with pkgs; [
neovim
htop
dnsmasq
];

View file

@ -39,7 +39,6 @@
};
nixpkgs.config.allowUnfree = true;
programs.command-not-found.enable = true;
nix = {
settings = {