diff --git a/nodes/hosts/common/configuration.nix b/nodes/hosts/common/configuration.nix index 5a4188d..7fc7242 100644 --- a/nodes/hosts/common/configuration.nix +++ b/nodes/hosts/common/configuration.nix @@ -1,4 +1,4 @@ -{ pkgs, inputs, config, ... }: +{ inputs, ... }: { imports = [ inputs.nix-flatpak.nixosModules.nix-flatpak diff --git a/nodes/hosts/common/programs/emulation.nix b/nodes/hosts/common/programs/emulation.nix index 7133d03..bfad8b5 100644 --- a/nodes/hosts/common/programs/emulation.nix +++ b/nodes/hosts/common/programs/emulation.nix @@ -1,4 +1,4 @@ -{ pkgs, inputs, ... }: { +{ pkgs, ... }: { # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = [ diff --git a/nodes/hosts/common/programs/firefox.nix b/nodes/hosts/common/programs/firefox.nix index a4e5e16..08d7e59 100644 --- a/nodes/hosts/common/programs/firefox.nix +++ b/nodes/hosts/common/programs/firefox.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: { +{ ... }: { programs.firefox.enable = true; } diff --git a/nodes/hosts/common/programs/general.nix b/nodes/hosts/common/programs/general.nix index fe5a35d..37fee41 100644 --- a/nodes/hosts/common/programs/general.nix +++ b/nodes/hosts/common/programs/general.nix @@ -1,4 +1,4 @@ -{ config, inputs, lib, pkgs, pkgs', ... }: { +{ pkgs, pkgs', ... }: { # List packages installed in system profile. To search, run: # $ nix search wget diff --git a/nodes/hosts/common/programs/git.nix b/nodes/hosts/common/programs/git.nix index f940bb3..5b15465 100644 --- a/nodes/hosts/common/programs/git.nix +++ b/nodes/hosts/common/programs/git.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: { +{ ... }: { programs.git.enable = true; } diff --git a/nodes/hosts/common/programs/gstreamer.nix b/nodes/hosts/common/programs/gstreamer.nix index 0c55ffa..ea38b57 100644 --- a/nodes/hosts/common/programs/gstreamer.nix +++ b/nodes/hosts/common/programs/gstreamer.nix @@ -1,4 +1,4 @@ -{ config, inputs, lib, pkgs, ... }: { +{ pkgs, ... }: { # List packages installed in system profile. To search, run: # $ nix search wget diff --git a/nodes/hosts/common/programs/hyprland.nix b/nodes/hosts/common/programs/hyprland.nix index 5b47bde..42a402c 100644 --- a/nodes/hosts/common/programs/hyprland.nix +++ b/nodes/hosts/common/programs/hyprland.nix @@ -1,4 +1,4 @@ -{ pkgs, inputs, ... }: { +{ pkgs, ... }: { # Install hyprland programs.hyprland = { enable = true; diff --git a/nodes/hosts/common/programs/kde.nix b/nodes/hosts/common/programs/kde.nix index 6c456c6..83006f6 100644 --- a/nodes/hosts/common/programs/kde.nix +++ b/nodes/hosts/common/programs/kde.nix @@ -1,4 +1,4 @@ -{ pkgs, inputs, ... }: { +{ pkgs, ... }: { # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = [ diff --git a/nodes/hosts/common/services/blueman.nix b/nodes/hosts/common/services/blueman.nix index 74e8618..e09abc7 100644 --- a/nodes/hosts/common/services/blueman.nix +++ b/nodes/hosts/common/services/blueman.nix @@ -1,3 +1,3 @@ -{ pkgs, ...}: { +{ ... }: { services.blueman.enable = true; } diff --git a/nodes/hosts/common/services/btrfs.nix b/nodes/hosts/common/services/btrfs.nix index 68660fd..e07db5f 100644 --- a/nodes/hosts/common/services/btrfs.nix +++ b/nodes/hosts/common/services/btrfs.nix @@ -1,4 +1,4 @@ -{ pkgs, ...}: { +{...}: { services.btrfs.autoScrub = { enable = true; interval = "weekly"; diff --git a/nodes/hosts/common/services/nix-flatpak.nix b/nodes/hosts/common/services/nix-flatpak.nix index 76d93e4..9fccfe2 100644 --- a/nodes/hosts/common/services/nix-flatpak.nix +++ b/nodes/hosts/common/services/nix-flatpak.nix @@ -1,4 +1,4 @@ -{ pkgs, ...}: { +{ ... }: { services.flatpak = { enable = true; update.onActivation = true; diff --git a/nodes/hosts/common/system/bootloader.nix b/nodes/hosts/common/system/bootloader.nix index 5189710..87c9e3d 100644 --- a/nodes/hosts/common/system/bootloader.nix +++ b/nodes/hosts/common/system/bootloader.nix @@ -1,4 +1,4 @@ -{ pkgs, config, ... }: { +{ pkgs, ... }: { boot = { loader = { systemd-boot.enable = true; diff --git a/nodes/hosts/common/system/networking.nix b/nodes/hosts/common/system/networking.nix index 98e8d91..a557e14 100644 --- a/nodes/hosts/common/system/networking.nix +++ b/nodes/hosts/common/system/networking.nix @@ -1,4 +1,4 @@ -{ config, lib, ...}: { +{ lib, ... }: { networking.networkmanager.enable = true; networking.useDHCP = lib.mkDefault true; } diff --git a/nodes/hosts/common/system/sops.nix b/nodes/hosts/common/system/sops.nix index 3f57b2e..948d960 100644 --- a/nodes/hosts/common/system/sops.nix +++ b/nodes/hosts/common/system/sops.nix @@ -1,4 +1,4 @@ -{ config, inputs, lib, ... }: { +{ ... }: { sops = { #defaultSopsFile = ../../../../private/secrets.yaml; #secrets = { diff --git a/nodes/hosts/common/system/users.nix b/nodes/hosts/common/system/users.nix index db4cabd..5ee86e6 100644 --- a/nodes/hosts/common/system/users.nix +++ b/nodes/hosts/common/system/users.nix @@ -1,4 +1,4 @@ -{ config, inputs, ... }: { +{ ... }: { # Define a user account. Don't forget to set a password with ‘passwd’. #sops.secrets = { # jay_password_hash = { };