From f2377efc53f2f1c016ccf0aca646c250b5f3fe4f Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Thu, 25 Nov 2021 11:38:00 +0000 Subject: [PATCH] added ledger, steam and teamviewer --- hosts/gAluminum/default.nix | 12 +++++++++--- hosts/gAluminum/wireguard.nix | 26 +++++++++++++------------- 2 files changed, 22 insertions(+), 16 deletions(-) diff --git a/hosts/gAluminum/default.nix b/hosts/gAluminum/default.nix index 4dd6b04..9906d49 100644 --- a/hosts/gAluminum/default.nix +++ b/hosts/gAluminum/default.nix @@ -34,14 +34,20 @@ in { }; time.timeZone = "Europe/London"; - virtualisation.virtualbox.host.enable = true; virtualisation.virtualbox.host.enableExtensionPack = true; users.extraGroups.vboxusers.members = [ "giulio" ]; - + services.printing.enable = true; sound.enable = true; - hardware.pulseaudio.enable = true; + + hardware = { + pulseaudio.enable = true; + ledger.enable = true; + }; + + services.teamviewer.enable = true; + programs.steam.enable = true; environment.systemPackages = with pkgs; [ efibootmgr ]; system.stateVersion = "21.05"; # Did you read the comment? } diff --git a/hosts/gAluminum/wireguard.nix b/hosts/gAluminum/wireguard.nix index 72a6b00..639b5f5 100644 --- a/hosts/gAluminum/wireguard.nix +++ b/hosts/gAluminum/wireguard.nix @@ -1,17 +1,17 @@ { networking.wg-quick.interfaces = { - giupi = { - address = ["10.3.0.2/32"]; - privateKeyFile = "/etc/wireguard/giupi.key"; - dns = ["10.3.0.1"]; - peers = [ - { - publicKey = "I4glUMvIGjjhvQMKhwGc8copPl2t9Us/YYRjT0BKuiw="; - allowedIPs = ["0.0.0.0/0"]; - endpoint = "architect.devs.giugl.io:1194"; - persistentKeepalive = 25; - } - ]; - }; + giupi = { + address = ["10.3.0.2/32"]; + privateKeyFile = "/etc/wireguard/giupi.key"; + dns = ["10.3.0.1"]; + peers = [ + { + publicKey = "I4glUMvIGjjhvQMKhwGc8copPl2t9Us/YYRjT0BKuiw="; + allowedIPs = ["0.0.0.0/0"]; + endpoint = "architect.devs.giugl.io:1194"; + persistentKeepalive = 25; + } + ]; }; + }; }