From ed979a450a37fd9761c1ba8393e4ee9dd243b81d Mon Sep 17 00:00:00 2001 From: Kleidi Bujari Date: Mon, 3 Mar 2025 11:48:26 -0500 Subject: early feb sprint --- machines/t1/default.nix | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) (limited to 'machines/t1/default.nix') diff --git a/machines/t1/default.nix b/machines/t1/default.nix index e68eece..68bc7b9 100644 --- a/machines/t1/default.nix +++ b/machines/t1/default.nix @@ -20,7 +20,11 @@ in xnet = { desktop.enable = true; - net.join = [ "plaza" ]; + net = { + interface = "enp5s0"; + join = [ "plaza" ]; + sshd.enable = true; + }; disk = { enable = true; device = "/dev/nvme0n1"; @@ -31,12 +35,7 @@ in hostName = "t1"; }; - nixpkgs.config.allowNonFree = true; - programs = { - # override default from xnet - light.enable = false; - steam.enable = true; corectrl = { enable = true; @@ -44,8 +43,18 @@ in }; }; + fileSystems."/mnt/media" = { + device = "radon:/radon/media"; + fsType = "nfs"; + options = [ "noauto" "x-systemd.automount" "x-systemd.idle-timeout=600" ]; + }; + + services.udev.packages = [ pkgs.ddcutil ]; + environment.shellAliases.b = "${pkgs.ddcutil}/bin/ddcutil setvcp 10"; + environment.systemPackages = with pkgs; [ - spotify + ddcutil prismlauncher + spotify ]; } -- cgit v1.3.1