remove useless ()
This commit is contained in:
parent
529003babb
commit
65c97b20fa
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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" ];
|
||||
|
|
Loading…
Reference in a new issue