mirror of
https://github.com/TECHNOFAB11/disko.git
synced 2025-12-12 16:10:03 +01:00
style: Disable inherit pattern check in statix
As discussed in [this comment](https://github.com/nix-community/disko/pull/143#discussion_r1097912402), as a blanket rule converting everything possible to `inherit` like statements can hurt readability. Add config file for statix to disable these checks and fixes, then rerun the autofix with these options.
This commit is contained in:
parent
08435eec4b
commit
4ba8181319
11 changed files with 16 additions and 12 deletions
|
|
@ -187,7 +187,7 @@ rec {
|
|||
internal = true;
|
||||
readOnly = true;
|
||||
type = lib.types.functionTo diskoLib.jsonType;
|
||||
inherit (attrs) default;
|
||||
default = attrs.default;
|
||||
description = "Mount script";
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@
|
|||
vgchange -a y
|
||||
${lib.concatMapStrings (x: x.dev or "") (lib.attrValues lvMounts)}
|
||||
'';
|
||||
inherit (lvMounts) fs;
|
||||
fs = lvMounts.fs;
|
||||
};
|
||||
};
|
||||
_config = lib.mkOption {
|
||||
|
|
|
|||
|
|
@ -54,8 +54,8 @@
|
|||
readOnly = true;
|
||||
default = [{
|
||||
fileSystems.${config.mountpoint} = {
|
||||
inherit (config) device;
|
||||
inherit (config) fsType;
|
||||
device = config.device;
|
||||
fsType = config.fsType;
|
||||
options = config.mountOptions;
|
||||
};
|
||||
}];
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
default = dev: [{
|
||||
swapDevices = [{
|
||||
device = dev;
|
||||
inherit (config) randomEncryption;
|
||||
randomEncryption = config.randomEncryption;
|
||||
}];
|
||||
}];
|
||||
description = "NixOS configuration";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue