diff --git a/machines/luna/configuration.nix b/machines/luna/configuration.nix index 3e3f844..98aee38 100644 --- a/machines/luna/configuration.nix +++ b/machines/luna/configuration.nix @@ -1,9 +1,4 @@ { - inputs, - outputs, - lib, - config, - pkgs, ... }: { imports = [ diff --git a/machines/luna/modules.nix b/machines/luna/modules.nix index 8b017e4..0534681 100644 --- a/machines/luna/modules.nix +++ b/machines/luna/modules.nix @@ -1,9 +1,4 @@ { - inputs, - outputs, - lib, - config, - pkgs, ... }: { imports = [ diff --git a/machines/solis/configuration.nix b/machines/solis/configuration.nix index 9509a9e..f637048 100644 --- a/machines/solis/configuration.nix +++ b/machines/solis/configuration.nix @@ -1,9 +1,4 @@ { - inputs, - outputs, - lib, - config, - pkgs, ... }: { imports = [ diff --git a/machines/solis/modules.nix b/machines/solis/modules.nix index 26e23d8..346b164 100644 --- a/machines/solis/modules.nix +++ b/machines/solis/modules.nix @@ -1,9 +1,4 @@ { - inputs, - outputs, - lib, - config, - pkgs, ... }: { imports = [ diff --git a/machines/terra/configuration.nix b/machines/terra/configuration.nix index a4a6d22..2d84c0c 100644 --- a/machines/terra/configuration.nix +++ b/machines/terra/configuration.nix @@ -1,9 +1,4 @@ { - inputs, - outputs, - lib, - config, - pkgs, ... }: { imports = [ diff --git a/machines/terra/modules.nix b/machines/terra/modules.nix index 24a6acd..60583fa 100644 --- a/machines/terra/modules.nix +++ b/machines/terra/modules.nix @@ -1,9 +1,4 @@ { - inputs, - outputs, - lib, - config, - pkgs, ... }: { imports = [ diff --git a/modules/apps/default.nix b/modules/apps/default.nix index a184fcd..c83ec2d 100644 --- a/modules/apps/default.nix +++ b/modules/apps/default.nix @@ -1,4 +1,4 @@ -{inputs, ...}: { +{...}: { imports = [ ./dev.nix diff --git a/modules/apps/dev.nix b/modules/apps/dev.nix index bdb7bd5..c146f9e 100644 --- a/modules/apps/dev.nix +++ b/modules/apps/dev.nix @@ -1,14 +1,11 @@ { - inputs, - outputs, lib, config, pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.apps.dev; - homeCfg = config.horseman; in { options = { horseman.apps.dev = { diff --git a/modules/apps/server.nix b/modules/apps/server.nix index 46f4426..01b64e1 100644 --- a/modules/apps/server.nix +++ b/modules/apps/server.nix @@ -1,12 +1,10 @@ { - inputs, - outputs, lib, config, pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.apps.server; in { options = { diff --git a/modules/apps/terminal.nix b/modules/apps/terminal.nix index 14e8d41..a50a90f 100644 --- a/modules/apps/terminal.nix +++ b/modules/apps/terminal.nix @@ -1,12 +1,10 @@ { - inputs, - outputs, lib, config, pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.apps.terminal; homeCfg = config.horseman; in { diff --git a/modules/apps/terminal/helix.nix b/modules/apps/terminal/helix.nix index ac043a0..218ea15 100644 --- a/modules/apps/terminal/helix.nix +++ b/modules/apps/terminal/helix.nix @@ -1,7 +1,4 @@ { - config, - lib, - pkgs, ... }: { programs.helix = { diff --git a/modules/apps/terminal/neovim.nix b/modules/apps/terminal/neovim.nix index e7924a4..f2abf2f 100644 --- a/modules/apps/terminal/neovim.nix +++ b/modules/apps/terminal/neovim.nix @@ -1,5 +1,4 @@ { - config, lib, pkgs, ... diff --git a/modules/apps/visual.nix b/modules/apps/visual.nix index e54799a..3e69f4b 100644 --- a/modules/apps/visual.nix +++ b/modules/apps/visual.nix @@ -1,14 +1,11 @@ { - inputs, - outputs, lib, config, pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.apps.visual; - homeCfg = config.horseman; in { options = { horseman.apps.visual = { diff --git a/modules/apps/visual/firefox.nix b/modules/apps/visual/firefox.nix index ef58439..f895326 100644 --- a/modules/apps/visual/firefox.nix +++ b/modules/apps/visual/firefox.nix @@ -1,22 +1,15 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.apps.visual.firefox; lock-false = { Value = false; Status = "locked"; }; - lock-true = { - Value = true; - Status = "locked"; - }; in { options = { horseman.apps.visual.firefox = { diff --git a/modules/base/default.nix b/modules/base/default.nix index 7d6b407..911a23b 100644 --- a/modules/base/default.nix +++ b/modules/base/default.nix @@ -1,4 +1,4 @@ -{inputs, ...}: { +{...}: { imports = [ ./nix.nix ./locale.nix diff --git a/modules/base/locale.nix b/modules/base/locale.nix index 04dd3d8..ba009f2 100644 --- a/modules/base/locale.nix +++ b/modules/base/locale.nix @@ -1,12 +1,9 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.base.locale; in { options = { diff --git a/modules/base/nix.nix b/modules/base/nix.nix index a252b4c..511adae 100644 --- a/modules/base/nix.nix +++ b/modules/base/nix.nix @@ -1,12 +1,11 @@ { inputs, - outputs, lib, config, pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.base.nix; in { options = { diff --git a/modules/boot/default.nix b/modules/boot/default.nix index 27422e1..5830ec2 100644 --- a/modules/boot/default.nix +++ b/modules/boot/default.nix @@ -1,4 +1,4 @@ -{inputs, ...}: { +{...}: { imports = [ ./greeter/sddm.nix ./greeter/gdm.nix diff --git a/modules/boot/greeter/cosmic.nix b/modules/boot/greeter/cosmic.nix index 3effde4..17c0049 100644 --- a/modules/boot/greeter/cosmic.nix +++ b/modules/boot/greeter/cosmic.nix @@ -1,12 +1,9 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.boot.greeter.cosmic; in { options = { diff --git a/modules/boot/greeter/gdm.nix b/modules/boot/greeter/gdm.nix index 9cd6c05..dd32516 100644 --- a/modules/boot/greeter/gdm.nix +++ b/modules/boot/greeter/gdm.nix @@ -1,12 +1,9 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.boot.greeter.gdm; in { options = { diff --git a/modules/boot/greeter/sddm.nix b/modules/boot/greeter/sddm.nix index 0946aac..fa3017e 100644 --- a/modules/boot/greeter/sddm.nix +++ b/modules/boot/greeter/sddm.nix @@ -1,12 +1,9 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.boot.greeter.sddm; in { options = { diff --git a/modules/boot/loader/grub.nix b/modules/boot/loader/grub.nix index b0ba6fc..8fbd366 100644 --- a/modules/boot/loader/grub.nix +++ b/modules/boot/loader/grub.nix @@ -1,12 +1,9 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.boot.loader.grub; in { options = { diff --git a/modules/boot/loader/systemd.nix b/modules/boot/loader/systemd.nix index e0f0a60..9e3c53e 100644 --- a/modules/boot/loader/systemd.nix +++ b/modules/boot/loader/systemd.nix @@ -1,12 +1,9 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.boot.loader.systemd; in { options = { diff --git a/modules/boot/refind.nix b/modules/boot/refind.nix index 029d876..4857521 100644 --- a/modules/boot/refind.nix +++ b/modules/boot/refind.nix @@ -1,12 +1,10 @@ { - inputs, - outputs, lib, config, pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.boot.refind; in { options = { diff --git a/modules/default.nix b/modules/default.nix index bd1a481..ed09c87 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -1,4 +1,4 @@ -{inputs, ...}: { +{...}: { imports = [ ./apps ./hardware diff --git a/modules/hardware/audio.nix b/modules/hardware/audio.nix index 8425660..62336db 100644 --- a/modules/hardware/audio.nix +++ b/modules/hardware/audio.nix @@ -1,12 +1,9 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.hardware.audio; in { options = { diff --git a/modules/hardware/bluetooth.nix b/modules/hardware/bluetooth.nix index 834fdf9..e248f96 100644 --- a/modules/hardware/bluetooth.nix +++ b/modules/hardware/bluetooth.nix @@ -1,12 +1,9 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.hardware.bluetooth; in { options = { diff --git a/modules/hardware/default.nix b/modules/hardware/default.nix index 3110830..78ddcd7 100644 --- a/modules/hardware/default.nix +++ b/modules/hardware/default.nix @@ -1,4 +1,4 @@ -{inputs, ...}: { +{...}: { imports = [ ./audio.nix ./bluetooth.nix diff --git a/modules/hardware/gpu/nvidia.nix b/modules/hardware/gpu/nvidia.nix index 8506c82..4d99756 100644 --- a/modules/hardware/gpu/nvidia.nix +++ b/modules/hardware/gpu/nvidia.nix @@ -1,12 +1,9 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.hardware.gpu.nvidia; in { options = { diff --git a/modules/hardware/wifi.nix b/modules/hardware/wifi.nix index 0afae2f..1975692 100644 --- a/modules/hardware/wifi.nix +++ b/modules/hardware/wifi.nix @@ -1,12 +1,9 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.hardware.wifi; in { options = { diff --git a/modules/network/default.nix b/modules/network/default.nix index 2d78aa3..143414f 100644 --- a/modules/network/default.nix +++ b/modules/network/default.nix @@ -1,4 +1,4 @@ -{inputs, ...}: { +{...}: { imports = [ ./mullvad.nix ./ssh.nix diff --git a/modules/network/mullvad.nix b/modules/network/mullvad.nix index 5b4de55..960de5f 100644 --- a/modules/network/mullvad.nix +++ b/modules/network/mullvad.nix @@ -1,12 +1,10 @@ { - inputs, - outputs, lib, config, pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.network.mullvad; in { options = { diff --git a/modules/network/ssh.nix b/modules/network/ssh.nix index d117d5f..095b15d 100644 --- a/modules/network/ssh.nix +++ b/modules/network/ssh.nix @@ -1,12 +1,9 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.network.ssh; in { options = { diff --git a/modules/network/syncthing.nix b/modules/network/syncthing.nix index d8300fc..73d8cf3 100644 --- a/modules/network/syncthing.nix +++ b/modules/network/syncthing.nix @@ -1,12 +1,9 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.network.syncthing; in { options = { diff --git a/modules/network/tailscale.nix b/modules/network/tailscale.nix index b5b573f..3b03fc0 100644 --- a/modules/network/tailscale.nix +++ b/modules/network/tailscale.nix @@ -1,12 +1,9 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.network.tailscale; in { options = { diff --git a/modules/terminal/default.nix b/modules/terminal/default.nix index a2d32af..da14057 100644 --- a/modules/terminal/default.nix +++ b/modules/terminal/default.nix @@ -1,4 +1,4 @@ -{inputs, ...}: { +{...}: { imports = [ ./zsh.nix ]; diff --git a/modules/terminal/zsh.nix b/modules/terminal/zsh.nix index 2361fe1..3a427cf 100644 --- a/modules/terminal/zsh.nix +++ b/modules/terminal/zsh.nix @@ -1,12 +1,10 @@ { - inputs, - outputs, lib, config, pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.terminal.zsh; in { options = { diff --git a/modules/timers/backup.nix b/modules/timers/backup.nix index d7162e9..2012681 100644 --- a/modules/timers/backup.nix +++ b/modules/timers/backup.nix @@ -1,14 +1,10 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.timers.backup; - homeCfg = config.horseman; in { options = { horseman.timers.backup = { diff --git a/modules/timers/default.nix b/modules/timers/default.nix index 8827a84..5e0f2da 100644 --- a/modules/timers/default.nix +++ b/modules/timers/default.nix @@ -1,4 +1,4 @@ -{inputs, ...}: { +{...}: { imports = [ ./wol.nix ./backup.nix diff --git a/modules/timers/wol.nix b/modules/timers/wol.nix index 5f2241d..371bab3 100644 --- a/modules/timers/wol.nix +++ b/modules/timers/wol.nix @@ -1,14 +1,10 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.timers.wol; - homeCfg = config.horseman; in { options = { horseman.timers.wol = { diff --git a/modules/username.nix b/modules/username.nix index bc9a2b2..6a730a8 100644 --- a/modules/username.nix +++ b/modules/username.nix @@ -1,13 +1,8 @@ { - inputs, - outputs, lib, - config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; - cfg = config.horseman; + inherit (lib) mkOption types; in { options = { horseman = { diff --git a/modules/users/default.nix b/modules/users/default.nix index 7fa55f8..c86646b 100644 --- a/modules/users/default.nix +++ b/modules/users/default.nix @@ -3,10 +3,9 @@ outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.users.default; homeCfg = config.horseman; in { diff --git a/modules/wm/cosmic/default.nix b/modules/wm/cosmic/default.nix index 50f018e..ff9d45b 100644 --- a/modules/wm/cosmic/default.nix +++ b/modules/wm/cosmic/default.nix @@ -1,12 +1,9 @@ { - inputs, - outputs, lib, config, - pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.wm.cosmic; in { options = { diff --git a/modules/wm/default.nix b/modules/wm/default.nix index 0fb0acd..f809977 100644 --- a/modules/wm/default.nix +++ b/modules/wm/default.nix @@ -1,4 +1,4 @@ -{inputs, ...}: { +{...}: { imports = [ ./gnome ./plasma diff --git a/modules/wm/gnome/config.nix b/modules/wm/gnome/config.nix index 11076e8..af0426e 100644 --- a/modules/wm/gnome/config.nix +++ b/modules/wm/gnome/config.nix @@ -1,4 +1,4 @@ -{pkgs, ...}: { +{...}: { dconf.settings = { "org/gnome/desktop/peripherals/touchpad" = { natural-scroll = false; diff --git a/modules/wm/gnome/default.nix b/modules/wm/gnome/default.nix index 0051133..102bdb9 100644 --- a/modules/wm/gnome/default.nix +++ b/modules/wm/gnome/default.nix @@ -1,12 +1,10 @@ { - inputs, - outputs, lib, config, pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.wm.gnome; homeCfg = config.horseman; in { diff --git a/modules/wm/plasma/default.nix b/modules/wm/plasma/default.nix index d5872f8..d3e2ff9 100644 --- a/modules/wm/plasma/default.nix +++ b/modules/wm/plasma/default.nix @@ -1,12 +1,10 @@ { - inputs, - outputs, lib, config, pkgs, ... }: let - inherit (lib) mkEnableOption mkIf mkOption types; + inherit (lib) mkEnableOption mkIf; cfg = config.horseman.wm.plasma; homeCfg = config.horseman; in {