From 3e2789be99329715783e1323e19c1be3a7616d82 Mon Sep 17 00:00:00 2001 From: sora Date: Fri, 17 Nov 2023 20:36:20 +0100 Subject: [PATCH] Update systems/iriy/default.nix --- systems/iriy/default.nix | 64 ++++++++++++++++++++-------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/systems/iriy/default.nix b/systems/iriy/default.nix index eb98035..196ddf1 100644 --- a/systems/iriy/default.nix +++ b/systems/iriy/default.nix @@ -1,32 +1,32 @@ -{ config, inputs, ... }: { - imports = with inputs.hardware.nixosModules; [ - ./hardware-configuration.nix - common-cpu-amd - common-gpu-amd - ]; - - hostcfg = { - hostname = "iriy"; - username = "sora"; - make = { - gui = true; - cli = true; - virt = true; - power = false; - game = true; - }; - net = { - wlp = { - enable = true; - nif = "wlp11s0"; - }; - wg = { - enable = true; - ip4 = "10.10.1.7/32"; - ip6 = "fd10:10:10::7/128"; - pk = config.sops.secrets.iriy_wg_priv.path; - }; - }; - }; -} - +{ config, inputs, ... }: { + imports = [ + ./hardware-configuration.nix + #common-cpu-amd + #common-gpu-amd + ]; + + hostcfg = { + hostname = "iriy"; + username = "sora"; + make = { + gui = true; + cli = true; + virt = true; + power = false; + game = true; + }; + net = { + wlp = { + enable = true; + nif = "wlp11s0"; + }; + wg = { + enable = true; + ip4 = "10.10.1.7/32"; + ip6 = "fd10:10:10::7/128"; + pk = config.sops.secrets.iriy_wg_priv.path; + }; + }; + }; +} +