Remove unused bindings from common config.

This commit is contained in:
jay
2025-07-12 13:42:05 -04:00
parent d20e0e2837
commit 04d52e047b
15 changed files with 15 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, inputs, config, ... }: { inputs, ... }:
{ {
imports = [ imports = [
inputs.nix-flatpak.nixosModules.nix-flatpak inputs.nix-flatpak.nixosModules.nix-flatpak

View File

@@ -1,4 +1,4 @@
{ pkgs, inputs, ... }: { { pkgs, ... }: {
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = [ environment.systemPackages = [

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }: { { ... }: {
programs.firefox.enable = true; programs.firefox.enable = true;
} }

View File

@@ -1,4 +1,4 @@
{ config, inputs, lib, pkgs, pkgs', ... }: { { pkgs, pkgs', ... }: {
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }: { { ... }: {
programs.git.enable = true; programs.git.enable = true;
} }

View File

@@ -1,4 +1,4 @@
{ config, inputs, lib, pkgs, ... }: { { pkgs, ... }: {
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget

View File

@@ -1,4 +1,4 @@
{ pkgs, inputs, ... }: { { pkgs, ... }: {
# Install hyprland # Install hyprland
programs.hyprland = { programs.hyprland = {
enable = true; enable = true;

View File

@@ -1,4 +1,4 @@
{ pkgs, inputs, ... }: { { pkgs, ... }: {
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = [ environment.systemPackages = [

View File

@@ -1,3 +1,3 @@
{ pkgs, ...}: { { ... }: {
services.blueman.enable = true; services.blueman.enable = true;
} }

View File

@@ -1,4 +1,4 @@
{ pkgs, ...}: { {...}: {
services.btrfs.autoScrub = { services.btrfs.autoScrub = {
enable = true; enable = true;
interval = "weekly"; interval = "weekly";

View File

@@ -1,4 +1,4 @@
{ pkgs, ...}: { { ... }: {
services.flatpak = { services.flatpak = {
enable = true; enable = true;
update.onActivation = true; update.onActivation = true;

View File

@@ -1,4 +1,4 @@
{ pkgs, config, ... }: { { pkgs, ... }: {
boot = { boot = {
loader = { loader = {
systemd-boot.enable = true; systemd-boot.enable = true;

View File

@@ -1,4 +1,4 @@
{ config, lib, ...}: { { lib, ... }: {
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
networking.useDHCP = lib.mkDefault true; networking.useDHCP = lib.mkDefault true;
} }

View File

@@ -1,4 +1,4 @@
{ config, inputs, lib, ... }: { { ... }: {
sops = { sops = {
#defaultSopsFile = ../../../../private/secrets.yaml; #defaultSopsFile = ../../../../private/secrets.yaml;
#secrets = { #secrets = {

View File

@@ -1,4 +1,4 @@
{ config, inputs, ... }: { { ... }: {
# Define a user account. Don't forget to set a password with passwd. # Define a user account. Don't forget to set a password with passwd.
#sops.secrets = { #sops.secrets = {
# jay_password_hash = { }; # jay_password_hash = { };