Feature: New Jupiter Server machine

This commit is contained in:
marthsincemelee
2023-10-13 22:45:35 +02:00
parent 718a1d97d1
commit fa7587edf0
3 changed files with 64 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
#TODO: CHECK THIS OUT: https://github.com/nix-community/disko its kinda better but felix does not support it
{
fileSystems."/" =
{ device = "/dev/disk/by-uuid/c95c64ad-f131-4bde-9bca-a7a3692173da";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/0D77-17BB";
fsType = "vfat";
};
}