summaryrefslogtreecommitdiff
path: root/machines/t1
diff options
context:
space:
mode:
authorKleidi Bujari <mail@4kb.net>2025-04-05 14:58:10 -0400
committerKleidi Bujari <mail@4kb.net>2025-04-05 14:58:10 -0400
commit179bf31d5edc90c826dacf0b06b149469d8d14fa (patch)
tree28a07fad01cce7627a2f332094e4a5261c8e5430 /machines/t1
parentbf4d4b2a330c03373f75942b9b1723a67f03a709 (diff)
downloaddepot-179bf31d5edc90c826dacf0b06b149469d8d14fa.tar.gz
depot-179bf31d5edc90c826dacf0b06b149469d8d14fa.tar.bz2
depot-179bf31d5edc90c826dacf0b06b149469d8d14fa.zip
automate hosts gen and bump nixpkgs
Diffstat (limited to 'machines/t1')
-rw-r--r--machines/t1/default.nix68
1 files changed, 0 insertions, 68 deletions
diff --git a/machines/t1/default.nix b/machines/t1/default.nix
deleted file mode 100644
index 7f375a1..0000000
--- a/machines/t1/default.nix
+++ /dev/null
@@ -1,68 +0,0 @@
-{ inputs, flake, pkgs, perSystem, ... }:
-
-let
- inherit (inputs.nixos-hardware.nixosModules)
- common-cpu-amd
- common-gpu-amd
- ;
-
- inherit (import flake.outputs.nixosModules.users { inherit perSystem pkgs; }) kle;
-in
-{
- imports = [
- common-cpu-amd
- common-gpu-amd
- ];
-
- system.stateVersion = "24.11";
-
- users.users.kle = kle;
-
- xnet = {
- desktop.enable = true;
- net = {
- interface = "enp5s0";
- join = [ "plaza" ];
- sshd.enable = true;
- };
- disk = {
- enable = true;
- device = "/dev/nvme0n1";
- };
- };
-
- networking.hostName = "t1";
-
- programs = {
- steam.enable = true;
- steam.extraCompatPackages = [ pkgs.proton-ge-bin ];
- corectrl = {
- enable = true;
- gpuOverclock.enable = true;
- };
- };
-
- fileSystems = {
- "/mnt/media" = {
- device = "radon:/radon/media";
- fsType = "nfs";
- options = [ "noauto" "x-systemd.automount" "x-systemd.idle-timeout=600" ];
- };
-
- "/mnt/gammix" = {
- device = "/dev/disk/by-uuid/bbbb4579-fac9-412e-a831-3034f7d27e04";
- fsType = "ext4";
- options = [ "users" "nofail" "noatime" ];
- };
- };
-
- services.udev.packages = [ pkgs.ddcutil ];
- environment.shellAliases.b = "${pkgs.ddcutil}/bin/ddcutil setvcp 10";
- boot.kernelModules = [ "i2c-dev" ];
-
- environment.systemPackages = with pkgs; [
- ddcutil
- prismlauncher
- spotify
- ];
-}