From ac132756e41d905f1198ea7462568d3b0d9961ed Mon Sep 17 00:00:00 2001 From: jay Date: Sat, 12 Jul 2025 13:50:23 -0400 Subject: [PATCH] Remove unused bindings from lappy and lappy jay configs. --- nodes/hosts/lappy/configuration.nix | 2 +- nodes/hosts/lappy/hardware-configuration.nix | 2 +- nodes/hosts/lappy/home/jay/home.nix | 2 +- nodes/hosts/lappy/home/jay/programs/hyprland.nix | 2 +- nodes/hosts/lappy/home/jay/programs/hyprpanel.nix | 2 +- nodes/hosts/lappy/services/touchpad.nix | 2 +- nodes/hosts/lappy/system/bootloader.nix | 2 +- nodes/hosts/lappy/system/networking.nix | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/nodes/hosts/lappy/configuration.nix b/nodes/hosts/lappy/configuration.nix index 7724e5a..e837664 100644 --- a/nodes/hosts/lappy/configuration.nix +++ b/nodes/hosts/lappy/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, ... }: +{ ... }: { imports = diff --git a/nodes/hosts/lappy/hardware-configuration.nix b/nodes/hosts/lappy/hardware-configuration.nix index dc28b71..5dc85ef 100644 --- a/nodes/hosts/lappy/hardware-configuration.nix +++ b/nodes/hosts/lappy/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/lappy/home/jay/home.nix b/nodes/hosts/lappy/home/jay/home.nix index 24a230e..38178c2 100644 --- a/nodes/hosts/lappy/home/jay/home.nix +++ b/nodes/hosts/lappy/home/jay/home.nix @@ -1,4 +1,4 @@ -{ config, pkgs, inputs, lib, ... }: +{ ... }: { imports = [ ./programs/hyprland.nix diff --git a/nodes/hosts/lappy/home/jay/programs/hyprland.nix b/nodes/hosts/lappy/home/jay/programs/hyprland.nix index 41b606d..d8ca801 100644 --- a/nodes/hosts/lappy/home/jay/programs/hyprland.nix +++ b/nodes/hosts/lappy/home/jay/programs/hyprland.nix @@ -1,4 +1,4 @@ -{ pkgs, lib, ... }: { +{ ... }: { wayland.windowManager.hyprland = { settings = { "monitor" = "eDP-1, 2880x1800@120, 0x0, 1"; diff --git a/nodes/hosts/lappy/home/jay/programs/hyprpanel.nix b/nodes/hosts/lappy/home/jay/programs/hyprpanel.nix index 399443e..87ae744 100644 --- a/nodes/hosts/lappy/home/jay/programs/hyprpanel.nix +++ b/nodes/hosts/lappy/home/jay/programs/hyprpanel.nix @@ -1,4 +1,4 @@ -{ pkgs, lib, ... }: { +{ lib, ... }: { programs.hyprpanel = { settings = { "bar.layouts" = { diff --git a/nodes/hosts/lappy/services/touchpad.nix b/nodes/hosts/lappy/services/touchpad.nix index 6dc1887..4353925 100644 --- a/nodes/hosts/lappy/services/touchpad.nix +++ b/nodes/hosts/lappy/services/touchpad.nix @@ -1,4 +1,4 @@ -{ pkgs, ...}: { +{ ... }: { # Enable touchpad support (enabled default in most desktopManager). services.libinput.enable = true; } diff --git a/nodes/hosts/lappy/system/bootloader.nix b/nodes/hosts/lappy/system/bootloader.nix index 57946ac..c551f97 100644 --- a/nodes/hosts/lappy/system/bootloader.nix +++ b/nodes/hosts/lappy/system/bootloader.nix @@ -1,4 +1,4 @@ -{ pkgs, config, ... }: { +{ config, ... }: { boot = { tmp = { useTmpfs = true; diff --git a/nodes/hosts/lappy/system/networking.nix b/nodes/hosts/lappy/system/networking.nix index b54b4c3..0fe2fbf 100644 --- a/nodes/hosts/lappy/system/networking.nix +++ b/nodes/hosts/lappy/system/networking.nix @@ -1,4 +1,4 @@ -{ config, ...}: { +{ ... }: { networking.hostName = "lappy"; # Define your hostname. }