WIP splitting up configuration.nix into modules

This commit is contained in:
Chris Kruining 2024-07-20 22:22:47 +02:00
parent 05a553251f
commit 835faf218d
8 changed files with 160 additions and 98 deletions

15
modules/system/boot.nix Normal file
View file

@ -0,0 +1,15 @@
{}:
{
boot.loader.systemd-boot-enable = true;
fileSystems."/home/chris/new_games" = {
device = "/dev/disk/by-label/games";
fsType = "ext4";
};
fileSystems."/home/chris/data" = {
device = "/dev/disk/by-label/Data";
fsType = "ntfs-3g";
options = [ "rw" "uid=chris" ];
};
}