fix(fsck): fsck optionnal
This commit is contained in:
parent
4a1e6f59ee
commit
40b6f875b4
2 changed files with 8 additions and 6 deletions
|
@ -36,7 +36,13 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
specialisation.router.configuration.imports = [ ./router.nix ];
|
||||
specialisation = {
|
||||
router.configuration.imports = [ ./router.nix ];
|
||||
fsck.configuration.fileSystems."/".options = [
|
||||
"fsck"
|
||||
"fix_errors"
|
||||
];
|
||||
};
|
||||
|
||||
nix.settings = mkMerge [
|
||||
((import sources.dgnum-infra { }).mkCacheSettings {
|
||||
|
@ -180,7 +186,7 @@ in
|
|||
|
||||
environment.systemPackages = with pkgs; [ brightnessctl ];
|
||||
fonts.packages = with pkgs; [
|
||||
fira-code-nerdfont
|
||||
nerd-fonts.fira-code
|
||||
font-awesome
|
||||
];
|
||||
|
||||
|
|
|
@ -33,10 +33,6 @@
|
|||
"/" = {
|
||||
device = "/dev/disk/by-uuid/4c1f76c6-5ce6-4987-b15e-9419627b7f19";
|
||||
fsType = "bcachefs";
|
||||
options = [
|
||||
"fsck"
|
||||
"fix_errors"
|
||||
];
|
||||
};
|
||||
|
||||
"/boot" = {
|
||||
|
|
Loading…
Add table
Reference in a new issue