Fix all the ISO
This commit is contained in:
parent
ad2a03c7b9
commit
170f814b0b
2 changed files with 12 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
{ ... }:
|
||||
{ lib, ... }:
|
||||
{
|
||||
imports = [
|
||||
./filesystems
|
||||
|
@ -9,13 +9,20 @@
|
|||
|
||||
networking = {
|
||||
hostName = "extern";
|
||||
wireguard.interfaces.wgc.ips = [ "10.100.0.21/24" ];
|
||||
wg-quick.interfaces.wgc.address = [ "10.100.0.21/24" ];
|
||||
};
|
||||
|
||||
system = {
|
||||
desktop.enable = true;
|
||||
wireless.enable = true;
|
||||
wireguard.client.enable = true;
|
||||
video.nvidia.enable = true;
|
||||
libvirtd.enable = true;
|
||||
stateVersion = "24.11";
|
||||
};
|
||||
|
||||
services = {
|
||||
btrfs.autoScrub.enable = lib.mkForce false;
|
||||
fstrim.enable = lib.mkForce false;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{ config, lib, ... }:
|
||||
{
|
||||
boot = lib.mkIf config.system.desktop.enable {
|
||||
plymouth.enable = true;
|
||||
loader.timeout = 0;
|
||||
consoleLogLevel = 0;
|
||||
loader.timeout = lib.mkForce 0;
|
||||
consoleLogLevel = lib.mkForce 0;
|
||||
initrd.verbose = false;
|
||||
kernelParams = [
|
||||
"quiet"
|
||||
|
|
Loading…
Add table
Reference in a new issue