diff --git a/flake.nix b/flake.nix index 42a4e69..4bd3b08 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ hyprland.url = "github:hyprwm/Hyprland"; }; - outputs = { self, nixpkgs, home-manager, nixvim, millennium, hyprland, nur, ... }@inputs: + outputs = { nixpkgs, home-manager, nixvim, millennium, nur, ... }@inputs: let overlays = [ millennium.overlays.default diff --git a/home/git.nix b/home/git.nix index 800ac19..dcfe5b6 100644 --- a/home/git.nix +++ b/home/git.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ ... }: { programs.git = { enable = true; diff --git a/home/tmux.nix b/home/tmux.nix index ccf1e7f..21b0f85 100644 --- a/home/tmux.nix +++ b/home/tmux.nix @@ -1,4 +1,4 @@ -{ pkgs, config, ... }: +{ pkgs, ... }: { programs.tmux = { enable = true; diff --git a/home/zoxide.nix b/home/zoxide.nix index f190543..2e46ea3 100644 --- a/home/zoxide.nix +++ b/home/zoxide.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ ... }: { programs.zoxide = { enable = true; diff --git a/lib/mksystem.nix b/lib/mksystem.nix index 7b3c7ca..387a23d 100644 --- a/lib/mksystem.nix +++ b/lib/mksystem.nix @@ -13,7 +13,6 @@ name: system, user, email, - stable ? false, gamingSystem ? false, workSystem ? false, desktopEnvironment ? "", diff --git a/machines/bomba/configuration.nix b/machines/bomba/configuration.nix index 19b2074..07a43c4 100644 --- a/machines/bomba/configuration.nix +++ b/machines/bomba/configuration.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). -{ config, pkgs, ... }: +{ ... }: { boot.loader.systemd-boot.enable = true; diff --git a/machines/bomba/hardware.nix b/machines/bomba/hardware.nix index 1dfb748..f913cc9 100644 --- a/machines/bomba/hardware.nix +++ b/machines/bomba/hardware.nix @@ -1,7 +1,7 @@ # Do not modify this file! It was generated by ‘nixos-generate-config’ # and may be overwritten by future invocations. Please make changes # to /etc/nixos/configuration.nix instead. -{ config, lib, pkgs, modulesPath, ... }: +{ config, lib, modulesPath, ... }: { imports = diff --git a/machines/bomba/virtualisation.nix b/machines/bomba/virtualisation.nix index 98c12c1..c7fae21 100644 --- a/machines/bomba/virtualisation.nix +++ b/machines/bomba/virtualisation.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ ... }: { virtualisation = { docker.enable = true; diff --git a/machines/katana/default.nix b/machines/katana/default.nix index cbe0697..17c8c27 100644 --- a/machines/katana/default.nix +++ b/machines/katana/default.nix @@ -1,4 +1,4 @@ -{ currentSystemUser, ... }: +{ ... }: { imports = [ ./hardware.nix diff --git a/machines/katana/hardware.nix b/machines/katana/hardware.nix index fc55676..e2fabc2 100644 --- a/machines/katana/hardware.nix +++ b/machines/katana/hardware.nix @@ -1,7 +1,7 @@ # Do not modify this file! It was generated by ‘nixos-generate-config’ # and may be overwritten by future invocations. Please make changes # to /etc/nixos/configuration.nix instead. -{ config, lib, pkgs, modulesPath, ... }: +{ config, lib, modulesPath, ... }: { imports = diff --git a/machines/workstation/default.nix b/machines/workstation/default.nix index 971aa35..9a1b31e 100644 --- a/machines/workstation/default.nix +++ b/machines/workstation/default.nix @@ -1,4 +1,4 @@ -{ currentSystemUser, ... }: +{ ... }: { imports = [ ./hardware.nix diff --git a/machines/workstation/hardware.nix b/machines/workstation/hardware.nix index 0759628..51f58d3 100644 --- a/machines/workstation/hardware.nix +++ b/machines/workstation/hardware.nix @@ -1,7 +1,7 @@ # Do not modify this file! It was generated by ‘nixos-generate-config’ # and may be overwritten by future invocations. Please make changes # to /etc/nixos/configuration.nix instead. -{ config, lib, pkgs, modulesPath, ... }: +{ config, lib, modulesPath, ... }: { imports = diff --git a/modules/packages.nix b/modules/packages.nix index d479c5d..5d86310 100644 --- a/modules/packages.nix +++ b/modules/packages.nix @@ -1,4 +1,4 @@ -{ pkgs, nur, gamingSystem, workSystem, currentSystemDe, ... }@ inputs: +{ pkgs, gamingSystem, workSystem, currentSystemDe, ... }@ inputs: { imports = [ ./programs diff --git a/modules/programs/nordvpn.nix b/modules/programs/nordvpn.nix index f5298c2..fc0a308 100644 --- a/modules/programs/nordvpn.nix +++ b/modules/programs/nordvpn.nix @@ -1,4 +1,4 @@ -{ pkgs, nur, ... } @ inputs: +{ pkgs, ... } @ inputs: { imports = [ inputs.nur.modules.nixos.default @@ -6,7 +6,7 @@ ]; nixpkgs.overlays = [ - (final: prev: { + (_final: _prev: { nordvpn = pkgs.nur.repos.wingej0.nordvpn; }) ];