forked from Fachschaft/nixConfig
Compare commits
24 commits
889b867c66
...
c078a05ad0
Author | SHA1 | Date | |
---|---|---|---|
c078a05ad0 | |||
ee26c2a42a | |||
d3758e38bf | |||
327d4ec34e | |||
a469194bce | |||
3300389ac8 | |||
f7d555471b | |||
737e66f822 | |||
5643438ce6 | |||
a566753dad | |||
b13aa775c8 | |||
6acb1aaed5 | |||
0e8d4eb121 | |||
9c83e40da6 | |||
0cbc7041b7 | |||
3258fbc2e3 | |||
3918ca5fec | |||
b0268f9d24 | |||
0407561faf | |||
00e774edf9 | |||
60b7eef25e | |||
69c4ccc0d8 | |||
12c9f59e2e | |||
4f3efdf496 |
2 changed files with 14 additions and 3 deletions
|
@ -19,7 +19,6 @@
|
|||
inputs = {
|
||||
flake-compat.follows = "";
|
||||
gitignore.follows = "";
|
||||
nixpkgs-stable.follows = "";
|
||||
nixpkgs.follows = "";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -30,16 +30,28 @@
|
|||
fileSystems."/mnt/persist" = {
|
||||
device = "/dev/disk/by-label/nixos";
|
||||
fsType = "btrfs";
|
||||
options = ["subvol=persist"];
|
||||
options = [
|
||||
"subvol=persist"
|
||||
"users" # Allows any user to mount and unmount
|
||||
"nofail" # Prevent system from failing if this drive doesn't mount
|
||||
];
|
||||
};
|
||||
fileSystems."/mnt/boot" = {
|
||||
device = "/dev/disk/by-label/boot";
|
||||
fsType = "ext4";
|
||||
options = [
|
||||
"users" # Allows any user to mount and unmount
|
||||
"nofail" # Prevent system from failing if this drive doesn't mount
|
||||
];
|
||||
};
|
||||
fileSystems."/mnt/nix" = {
|
||||
device = "/dev/disk/by-label/nixos";
|
||||
fsType = "btrfs";
|
||||
options = ["subvol=nix"];
|
||||
options = [
|
||||
"subvol=nix"
|
||||
"users" # Allows any user to mount and unmount
|
||||
"nofail" # Prevent system from failing if this drive doesn't mount
|
||||
];
|
||||
};
|
||||
|
||||
swapDevices = [{device = "/dev/disk/by-uuid/89e13a83-506a-43b4-b06a-09424500ceda";}];
|
||||
|
|
Loading…
Add table
Reference in a new issue