forked from Fachschaft/nixConfig
Compare commits
22 commits
c078a05ad0
...
889b867c66
Author | SHA1 | Date | |
---|---|---|---|
889b867c66 | |||
b2f6011c15 | |||
85abf4ce93 | |||
29ac5ba879 | |||
6788b31aad | |||
e0c742fc88 | |||
eb75da15d4 | |||
23d85d5364 | |||
797599b296 | |||
5032b94ed1 | |||
ceaaa3bcaf | |||
85550be504 | |||
be998b48f5 | |||
10ca56c064 | |||
c05d7591a8 | |||
ea956c99e7 | |||
b3dde5ef7a | |||
0517a5e77c | |||
3ece72db70 | |||
68a02c75e1 | |||
beaab16ffa | |||
01951eadad |
2 changed files with 3 additions and 14 deletions
|
@ -19,6 +19,7 @@
|
|||
inputs = {
|
||||
flake-compat.follows = "";
|
||||
gitignore.follows = "";
|
||||
nixpkgs-stable.follows = "";
|
||||
nixpkgs.follows = "";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -30,28 +30,16 @@
|
|||
fileSystems."/mnt/persist" = {
|
||||
device = "/dev/disk/by-label/nixos";
|
||||
fsType = "btrfs";
|
||||
options = [
|
||||
"subvol=persist"
|
||||
"users" # Allows any user to mount and unmount
|
||||
"nofail" # Prevent system from failing if this drive doesn't mount
|
||||
];
|
||||
options = ["subvol=persist"];
|
||||
};
|
||||
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"
|
||||
"users" # Allows any user to mount and unmount
|
||||
"nofail" # Prevent system from failing if this drive doesn't mount
|
||||
];
|
||||
options = ["subvol=nix"];
|
||||
};
|
||||
|
||||
swapDevices = [{device = "/dev/disk/by-uuid/89e13a83-506a-43b4-b06a-09424500ceda";}];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue