add gitattributes
This commit is contained in:
parent
5ab224ef8f
commit
2358546700
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
||||
* eol=lf
|
@ -1,7 +1,10 @@
|
||||
{ pkgs, lib, config, ... }: {
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
options = [ "subvol=nixos" "discard" "ssd" "noatime" "compress=zstd" ];
|
||||
options = if config.deviceSpecific.isSSD then
|
||||
[ "discard" "ssd" "noatime" "compress=zstd" ]
|
||||
else
|
||||
[ "discard" "noatime" "compress=zstd" ];
|
||||
};
|
||||
"/shared" = {
|
||||
fsType = "vboxsf";
|
||||
|
Loading…
x
Reference in New Issue
Block a user