summaryrefslogtreecommitdiff
path: root/machines/t1/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'machines/t1/default.nix')
-rw-r--r--machines/t1/default.nix16
1 files changed, 15 insertions, 1 deletions
diff --git a/machines/t1/default.nix b/machines/t1/default.nix
index 31a652e..d95926b 100644
--- a/machines/t1/default.nix
+++ b/machines/t1/default.nix
@@ -1,9 +1,23 @@
-{ ... }: {
+{ inputs, ... }:
+
+let
+ inherit (inputs.nixos-hardware.nixosModules)
+ common-cpu-amd
+ common-gpu-amd
+ ;
+in
+{
+ imports = [
+ common-cpu-amd
+ common-gpu-amd
+ ];
+
system.stateVersion = "24.11";
xnet = {
desktop.enable = true;
users.enable = [ "kle" ];
+ net.join = [ "plaza" ];
disk = {
enable = true;
device = "/dev/nvme0n1";