chore: nix fmt
This commit is contained in:
parent
a80bd4ed3b
commit
7266fff06e
128 changed files with 3402 additions and 2013 deletions
|
@ -1,10 +1,15 @@
|
|||
{ lib
|
||||
, config
|
||||
, ... }: with lib; let
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.global.fs;
|
||||
in mkIf (cfg.type == "f2fs") {
|
||||
fileSystems."/nix" =
|
||||
{ device = "/dev/disk/by-uuid/${cfg.store}";
|
||||
in
|
||||
mkIf (cfg.type == "f2fs") {
|
||||
fileSystems."/nix" = {
|
||||
device = "/dev/disk/by-uuid/${cfg.store}";
|
||||
fsType = "f2fs";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue