Merge branch 'main' of git.firelilith.org:lilith/nixos

This commit is contained in:
Lilith 2025-08-15 16:15:53 +02:00
commit c1b1b14be1
No known key found for this signature in database
GPG key ID: 272C807BD91F8446
4 changed files with 56 additions and 41 deletions

View file

@ -4,7 +4,10 @@
enable = true;
wifi.macAddress = "stable-ssid";
ethernet.macAddress = "stable";
plugins = with pkgs; [ networkmanager-vpnc ];
plugins = with pkgs; [
networkmanager-vpnc
networkmanager-openconnect
];
};
services.resolved.enable = true;

View file

@ -18,5 +18,6 @@
wget
wireguard-tools
zip
vpnc
];
}

View file

@ -41,6 +41,17 @@ in
];
};
systemd.user.services.steam = {
enable = true;
description = "Open Steam in the background at boot";
serviceConfig = {
ExecStart = "${pkgs.steam}/bin/steam -nochatui -nofriendsui -silent %U";
wantedBy = [ "graphical-session.target" ];
Restart = "on-failure";
RestartSec = "5s";
};
};
# SteamVR kernel patch for AMDGPU
boot.kernelPatches = gaming-host [
{