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 @@ }; }; }; -}; } 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 ]; 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 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"; + }; +}