WIP splitting up configuration.nix into modules
This commit is contained in:
parent
05a553251f
commit
835faf218d
8 changed files with 160 additions and 98 deletions
15
modules/system/boot.nix
Normal file
15
modules/system/boot.nix
Normal 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" ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue