Remove unused bindings from nixy and nixy jay configs.

This commit is contained in:
jay
2025-07-12 13:53:13 -04:00
parent ac132756e4
commit adbd75a48a
8 changed files with 8 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page, on # 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`). # https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ config, lib, pkgs, inputs, ... }: { inputs, ... }:
{ {
imports = imports =

View File

@@ -1,7 +1,7 @@
# Do not modify this file! It was generated by nixos-generate-config # Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes # and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead. # to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }: { config, lib, modulesPath, ... }:
{ {
imports = imports =

View File

@@ -1,4 +1,4 @@
{ config, pkgs, inputs, lib, ... }: { lib, ... }:
{ {
programs.hyprpanel = { programs.hyprpanel = {

View File

@@ -1,4 +1,4 @@
{lib, inputs, ...}: { {lib, ... }: {
# Reset root subvolume on boot # Reset root subvolume on boot
boot.initrd.postResumeCommands = lib.mkAfter '' boot.initrd.postResumeCommands = lib.mkAfter ''
mkdir /btrfs_tmp mkdir /btrfs_tmp

View File

@@ -1,4 +1,4 @@
{ pkgs, ...}: { { ... }: {
# Enable the X11 windowing system. # Enable the X11 windowing system.
# You can disable this if you're only using the Wayland session. # You can disable this if you're only using the Wayland session.
services.xserver = { services.xserver = {

View File

@@ -1,4 +1,4 @@
{ pkgs, config, ... }: { { config, ... }: {
boot = { boot = {
kernelModules = [ "kvm-amd" ]; kernelModules = [ "kvm-amd" ];
extraModulePackages = with config.boot.kernelPackages; [ xpadneo ]; extraModulePackages = with config.boot.kernelPackages; [ xpadneo ];

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }: { { ... }: {
environment = { environment = {
variables = { variables = {
# Required to run the correct GBM backend for nvidia GPUs on wayland # Required to run the correct GBM backend for nvidia GPUs on wayland

View File

@@ -1,4 +1,4 @@
{ config, ...}: { { ... }: {
networking.hostName = "nixy"; # Define your hostname. networking.hostName = "nixy"; # Define your hostname.
} }