chore: merge remote-tracking branch 'refs/remotes/origin/master'

This commit is contained in:
Ahwx 2024-12-29 17:57:09 +01:00
commit 72c75ba404
4 changed files with 11 additions and 3 deletions

View file

@ -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 @@
};
};
};
};
}

View file

@ -3,6 +3,7 @@
imports = [
./hardware-configuration.nix
./../../modules/core
./../../modules/home/nfs.nix
./../../modules/core/virtualization.nix
];

View file

@ -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

7
modules/home/nfs.nix Normal file
View file

@ -0,0 +1,7 @@
{ ... }:
{
fileSystems."/nfs" = {
device = "harbour:/mnt/main/main_big";
fsType = "nfs";
};
}