remove useless ()

This commit is contained in:
Adithya 2024-05-12 15:11:00 +05:30
parent 529003babb
commit 65c97b20fa
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
2 changed files with 3 additions and 3 deletions

View file

@ -21,7 +21,7 @@
./zsh.nix
];
home.packages = with pkgs; let steam-custom = (steam.override { extraPkgs = p: [ p.gamemode p.gamescope p.mangohud ]; }); in [
home.packages = with pkgs; let steam-custom = steam.override { extraPkgs = p: [ p.gamemode p.gamescope p.mangohud ]; }; in [
_1password-gui
discord
doctl

View file

@ -1,12 +1,12 @@
{ secrets, ... }:
let
wireguard_server = (secrets.wireguard_server // {
wireguard_server = secrets.wireguard_server // {
persistentKeepalive = 20;
allowedIPs = [
"10.10.10.0/24"
"fd7c:585c:c4ae::0/64"
];
});
};
in
{
networking.firewall.trustedInterfaces = [ "wg0" ];