chore: Updates
This commit is contained in:
parent
913562b98b
commit
0e966c6201
5 changed files with 163 additions and 8 deletions
|
@ -19,7 +19,7 @@
|
|||
|
||||
networking = {
|
||||
networkmanager.enable = true;
|
||||
# openconnect-sso.enable = true;
|
||||
openconnect-sso.enable = true;
|
||||
};
|
||||
|
||||
nix = {
|
||||
|
@ -87,7 +87,10 @@
|
|||
powerOnBoot = false;
|
||||
};
|
||||
|
||||
networking.hostName = "Tibo-NixFat";
|
||||
networking = {
|
||||
hostName = "Tibo-NixFat";
|
||||
networkmanager.wifi.powersave = true;
|
||||
};
|
||||
|
||||
services = {
|
||||
logind = {
|
||||
|
@ -108,9 +111,13 @@
|
|||
|
||||
# Touchpad
|
||||
libinput.enable = true;
|
||||
|
||||
thermald.enable = true;
|
||||
};
|
||||
|
||||
system.stateVersion = "24.05";
|
||||
system.stateVersion = "24.11";
|
||||
|
||||
systemd.coredump.enable = false;
|
||||
|
||||
time.timeZone = "Europe/Brussels";
|
||||
|
||||
|
|
|
@ -49,5 +49,9 @@
|
|||
# networking.interfaces.wlp111s0.useDHCP = lib.mkDefault true;
|
||||
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
hardware = {
|
||||
enableAllFirmware = true;
|
||||
cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -29,10 +29,8 @@ in {
|
|||
# Headphone jack on laptop
|
||||
{ "node.name" = "alsa_output.pci-0000_00_1f.3.analog-stereo"; }
|
||||
];
|
||||
actions = {
|
||||
update-props = {
|
||||
"session.suspend-timeout-seconds" = 0;
|
||||
};
|
||||
actions.update-props = {
|
||||
"session.suspend-timeout-seconds" = 0;
|
||||
};
|
||||
}
|
||||
];
|
||||
|
|
|
@ -10,11 +10,13 @@ in {
|
|||
host = {
|
||||
enable = true;
|
||||
enableExtensionPack = true;
|
||||
enableHardening = true;
|
||||
};
|
||||
guest = {
|
||||
enable = true;
|
||||
clipboard = true;
|
||||
seamless = true;
|
||||
vboxsf = false; # Module not found?...
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue