initial commit with 30% less flair than usual ngl

This commit is contained in:
martyTF 2025-12-15 00:00:26 +01:00
commit 9dc30dc2a0
7 changed files with 197 additions and 0 deletions

26
marty-pc.nix Normal file
View file

@ -0,0 +1,26 @@
{ config, lib, pkgs, ... }:
{
networking = {
hostName = "marty-pc";
interfaces = {
enp42s0 = {
wakeOnLan = {
enable = true;
policy = [ "magic" ];
};
};
};
};
fileSystems = {
"/mnt/SSD" = {
device = "/dev/disk/by-uuid/af5282f0-0e02-4532-902f-97509af70d11";
fsType = "ext4";
};
"/mnt/HDD" = {
device = "/dev/disk/by-uuid/41e7ec41-2e43-4254-9f00-f4be98cddc6e";
fsType = "ext4";
};
};
}