summaryrefslogtreecommitdiff
path: root/machines/t1
diff options
context:
space:
mode:
authorKleidi Bujari <mail@4kb.net>2025-03-03 11:48:26 -0500
committerKleidi Bujari <mail@4kb.net>2025-03-03 11:48:26 -0500
commited979a450a37fd9761c1ba8393e4ee9dd243b81d (patch)
tree5789e5c2ff6215032e745c95949ca35ffa8cd7ca /machines/t1
parentce6292c27207a7359e839d870a141b922aeb754e (diff)
downloaddepot-ed979a450a37fd9761c1ba8393e4ee9dd243b81d.tar.gz
depot-ed979a450a37fd9761c1ba8393e4ee9dd243b81d.tar.bz2
depot-ed979a450a37fd9761c1ba8393e4ee9dd243b81d.zip
early feb sprint
Diffstat (limited to 'machines/t1')
-rw-r--r--machines/t1/default.nix23
1 files changed, 16 insertions, 7 deletions
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
];
}