From 4eba641d2ff3bd140851a24501dc47928e0ea33e Mon Sep 17 00:00:00 2001 From: Ahwx Date: Thu, 26 Dec 2024 12:38:02 +0100 Subject: [PATCH 1/4] fix: missed a `};` and added one somewhere else which caused some hosts to disappear --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 460d581..9d79e92 100644 --- a/flake.nix +++ b/flake.nix @@ -67,6 +67,7 @@ agenix.nixosModules.default ]; specialArgs = { host="yoshino"; inherit self inputs username ; }; + }; ichiyo = nixpkgs.lib.nixosSystem { inherit system; modules = [ @@ -93,5 +94,4 @@ }; }; }; -}; } From 7ae337e0c41a81a7e2e8486c227398b08afbdd92 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Thu, 26 Dec 2024 12:38:15 +0100 Subject: [PATCH 2/4] feat: create module to mount nfs drive --- modules/home/nfs.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 modules/home/nfs.nix diff --git a/modules/home/nfs.nix b/modules/home/nfs.nix new file mode 100644 index 0000000..e3c3de8 --- /dev/null +++ b/modules/home/nfs.nix @@ -0,0 +1,7 @@ +{ ... }: +{ + fileSystems."/nfs" = { + device = "harbour:/mnt/main/main_big"; + fsType = "nfs"; + }; +} From bee3a65cef2c32a3e3c5fa547bca569323b6ab4d Mon Sep 17 00:00:00 2001 From: Ahwx Date: Thu, 26 Dec 2024 12:38:23 +0100 Subject: [PATCH 3/4] fix: display arrangement woohoo --- modules/home/hyprland/displays.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/home/hyprland/displays.conf b/modules/home/hyprland/displays.conf index 10882ff..b97db75 100644 --- a/modules/home/hyprland/displays.conf +++ b/modules/home/hyprland/displays.conf @@ -1,5 +1,5 @@ +monitor=desc:Fujitsu Siemens Computers GmbH E24T-7 LED YV8X006903 ,1920x1080@60 , 0x0 ,1 ,transform,0 +monitor=desc:Microstep Optix AG32C 0000000000001 ,1920x1080@165,1920x0 ,1 ,transform,0 monitor=desc:Iiyama North America PL2083H 1127641201254 ,1600x900@60 , 0x0 ,1 ,transform,0 monitor=desc:Invalid Vendor Codename - RTK 0x1D1A 0x01010101 ,1600x900@60 , 0x0 ,1 ,transform,0 -monitor=desc:Microstep Optix AG32C 0000000000001 ,1920x1080@165,1600x0 ,1 ,transform,0 -monitor=desc:Fujitsu Siemens Computers GmbH E24T-7 LED YV8X006903 ,1920x1080@60 ,3520x0 ,1 ,transform,0 monitor=desc:BOE 0x0BCA ,2256x1504@60 , 0x0 ,1.25,transform,0 From ec6d93ce63964f4e8373c2fde92a95293dfde44d Mon Sep 17 00:00:00 2001 From: Ahwx Date: Thu, 26 Dec 2024 12:38:36 +0100 Subject: [PATCH 4/4] feat: load nfs drive for `yoshino` --- hosts/yoshino/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/yoshino/default.nix b/hosts/yoshino/default.nix index 31de88d..23a622a 100644 --- a/hosts/yoshino/default.nix +++ b/hosts/yoshino/default.nix @@ -3,6 +3,7 @@ imports = [ ./hardware-configuration.nix ./../../modules/core + ./../../modules/home/nfs.nix ./../../modules/core/virtualization.nix ];