refactor: fix formatting and ensure consistent style
- Adjusted formatting in Nix files by revising argument lists. - Added missing commas for consistency. - Removed extraneous whitespace and ensured uniform newline usage.
This commit is contained in:
parent
e224d668eb
commit
c2486f6c82
|
@ -15,11 +15,11 @@ in
|
||||||
key <AB09> { [ period, greater, ellipsis, division ] };
|
key <AB09> { [ period, greater, ellipsis, division ] };
|
||||||
};
|
};
|
||||||
'';
|
'';
|
||||||
|
|
||||||
xdg.configFile."xkb/rules/evdev".text = ''
|
xdg.configFile."xkb/rules/evdev".text = ''
|
||||||
! option = symbols
|
! option = symbols
|
||||||
mod:ellipsis = +mod(ellipsis)
|
mod:ellipsis = +mod(ellipsis)
|
||||||
! include %S/evdev
|
! include %S/evdev
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
{
|
{ config
|
||||||
options,
|
, lib
|
||||||
config,
|
, ...
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
}:
|
||||||
with lib;
|
with lib;
|
||||||
with lib.metacfg;
|
with lib.metacfg;
|
||||||
|
@ -43,4 +40,4 @@ in
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{ config
|
{
|
||||||
, ...
|
config,
|
||||||
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
sops.secrets.internetbs = {
|
sops.secrets.internetbs = {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{ config
|
{
|
||||||
, ...
|
config,
|
||||||
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
users.users.nginx.extraGroups = [ "acme" ];
|
users.users.nginx.extraGroups = [ "acme" ];
|
||||||
|
|
Loading…
Reference in a new issue