some linting

This commit is contained in:
Henri Dohmen 2025-12-23 23:16:26 +01:00
parent d778875a1b
commit 51e7ad82d1
Signed by: hd
GPG key ID: AB79213B044674AE
18 changed files with 12 additions and 23 deletions

View file

@ -1,7 +1,6 @@
{
config,
lib,
pkgs,
...
}:
with lib;

View file

@ -2,7 +2,6 @@
config,
lib,
pkgs,
inputs,
...
}:
with lib;

View file

@ -1,7 +1,6 @@
{
config,
lib,
options,
pkgs,
secrets,
var,

View file

@ -1,7 +1,7 @@
{ config, lib, ... }:
let
cfg = config.hd.desktop.accounts;
inherit (lib) mkEnableOption mkIf;
inherit (lib) mkIf;
in
{
config = mkIf cfg.enable {

View file

@ -6,7 +6,7 @@
}:
let
cfg = config.hd.desktop.audio;
inherit (lib) mkEnableOption mkIf;
inherit (lib) mkIf;
in
{
config = mkIf cfg.enable {

View file

@ -1,8 +1,6 @@
{
inputs,
lib,
config,
options,
...
}:
with lib;

View file

@ -6,7 +6,7 @@
}:
let
cfg = config.hd.desktop.fonts;
inherit (lib) mkEnableOption mkIf;
inherit (lib) mkIf;
in
{
config = mkIf cfg.enable {

View file

@ -6,7 +6,7 @@
}:
let
cfg = config.hd.desktop.gpg;
inherit (lib) mkEnableOption mkIf;
inherit (lib) mkIf;
in
{
config = mkIf cfg.enable {

View file

@ -8,7 +8,7 @@
}:
let
cfg = config.hd.desktop.network;
inherit (lib) mkEnableOption mkIf;
inherit (lib) mkIf;
in
{
config = mkIf cfg.enable {

View file

@ -1,12 +1,11 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.hd.desktop.security;
inherit (lib) mkEnableOption mkIf;
inherit (lib) mkIf;
in
{
config = mkIf cfg.enable {

View file

@ -6,7 +6,7 @@
}:
let
cfg = config.hd.desktop.services;
inherit (lib) mkEnableOption mkIf;
inherit (lib) mkIf;
in
{
config = mkIf cfg.enable {

View file

@ -6,7 +6,7 @@
}:
let
cfg = config.hd.desktop.software;
inherit (lib) mkEnableOption mkIf;
inherit (lib) mkIf;
in
{
imports = [ ./development.nix ];

View file

@ -6,7 +6,7 @@
}:
let
cfg = config.hd.desktop.software.development;
inherit (lib) mkEnableOption mkIf;
inherit (lib) mkIf;
in
{
config = mkIf cfg.enable {

View file

@ -1,12 +1,11 @@
{
pkgs,
config,
lib,
...
}:
let
cfg = config.hd.desktop.windowManager;
inherit (lib) mkEnableOption mkIf;
inherit (lib) mkIf;
in
{
config = mkIf cfg.enable {