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
|
./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
|
_1password-gui
|
||||||
discord
|
discord
|
||||||
doctl
|
doctl
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{ secrets, ... }:
|
{ secrets, ... }:
|
||||||
let
|
let
|
||||||
wireguard_server = (secrets.wireguard_server // {
|
wireguard_server = secrets.wireguard_server // {
|
||||||
persistentKeepalive = 20;
|
persistentKeepalive = 20;
|
||||||
allowedIPs = [
|
allowedIPs = [
|
||||||
"10.10.10.0/24"
|
"10.10.10.0/24"
|
||||||
"fd7c:585c:c4ae::0/64"
|
"fd7c:585c:c4ae::0/64"
|
||||||
];
|
];
|
||||||
});
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
networking.firewall.trustedInterfaces = [ "wg0" ];
|
networking.firewall.trustedInterfaces = [ "wg0" ];
|
||||||
|
|
Loading…
Reference in a new issue