diff --git a/nodes/hosts/nixy/configuration.nix b/nodes/hosts/nixy/configuration.nix index 53a1a54..1128c8d 100644 --- a/nodes/hosts/nixy/configuration.nix +++ b/nodes/hosts/nixy/configuration.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page, on # https://search.nixos.org/options and in the NixOS manual (`nixos-help`). -{ config, lib, pkgs, inputs, ... }: +{ inputs, ... }: { imports = diff --git a/nodes/hosts/nixy/hardware-configuration.nix b/nodes/hosts/nixy/hardware-configuration.nix index eadc2f7..6d92b05 100644 --- a/nodes/hosts/nixy/hardware-configuration.nix +++ b/nodes/hosts/nixy/hardware-configuration.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/nodes/hosts/nixy/home/jay/home.nix b/nodes/hosts/nixy/home/jay/home.nix index 1ed6892..a6c8d3d 100644 --- a/nodes/hosts/nixy/home/jay/home.nix +++ b/nodes/hosts/nixy/home/jay/home.nix @@ -1,4 +1,4 @@ -{ config, pkgs, inputs, lib, ... }: +{ lib, ... }: { programs.hyprpanel = { diff --git a/nodes/hosts/nixy/impermanence.nix b/nodes/hosts/nixy/impermanence.nix index c85aa01..a7d4a2c 100644 --- a/nodes/hosts/nixy/impermanence.nix +++ b/nodes/hosts/nixy/impermanence.nix @@ -1,4 +1,4 @@ -{lib, inputs, ...}: { +{lib, ... }: { # Reset root subvolume on boot boot.initrd.postResumeCommands = lib.mkAfter '' mkdir /btrfs_tmp diff --git a/nodes/hosts/nixy/services/xserver.nix b/nodes/hosts/nixy/services/xserver.nix index 62f3ed2..8d3e897 100644 --- a/nodes/hosts/nixy/services/xserver.nix +++ b/nodes/hosts/nixy/services/xserver.nix @@ -1,4 +1,4 @@ -{ pkgs, ...}: { +{ ... }: { # Enable the X11 windowing system. # You can disable this if you're only using the Wayland session. services.xserver = { diff --git a/nodes/hosts/nixy/system/bootloader.nix b/nodes/hosts/nixy/system/bootloader.nix index 9915d63..583f732 100644 --- a/nodes/hosts/nixy/system/bootloader.nix +++ b/nodes/hosts/nixy/system/bootloader.nix @@ -1,4 +1,4 @@ -{ pkgs, config, ... }: { +{ config, ... }: { boot = { kernelModules = [ "kvm-amd" ]; extraModulePackages = with config.boot.kernelPackages; [ xpadneo ]; diff --git a/nodes/hosts/nixy/system/environment.nix b/nodes/hosts/nixy/system/environment.nix index 530d7fa..85e33a2 100644 --- a/nodes/hosts/nixy/system/environment.nix +++ b/nodes/hosts/nixy/system/environment.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: { +{ ... }: { environment = { variables = { # Required to run the correct GBM backend for nvidia GPUs on wayland diff --git a/nodes/hosts/nixy/system/networking.nix b/nodes/hosts/nixy/system/networking.nix index 18a13ea..4161305 100644 --- a/nodes/hosts/nixy/system/networking.nix +++ b/nodes/hosts/nixy/system/networking.nix @@ -1,4 +1,4 @@ -{ config, ...}: { +{ ... }: { networking.hostName = "nixy"; # Define your hostname. }