feat: initial
This commit is contained in:
commit
bba9ceff39
18 changed files with 750 additions and 0 deletions
14
data/storage.nix
Normal file
14
data/storage.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
rec {
|
||||
sdcard = {
|
||||
path = "/";
|
||||
type = "ext4";
|
||||
source = "/dev/disk/by-label/NIXOS_SD";
|
||||
options = ["noatime"];
|
||||
};
|
||||
ssd = {
|
||||
path = "/mnt/ssd";
|
||||
type = "ext4";
|
||||
source = "/dev/disk/by-uuid/a3ffb02e-fe9f-4bce-bd94-af0294ebff8f";
|
||||
options = ["noatime"];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue