Skip to content

Commit

Permalink
style: unbind unused params
Browse files Browse the repository at this point in the history
  • Loading branch information
DavSanchez committed Nov 26, 2024
1 parent 5c89362 commit 495f527
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 11 deletions.
3 changes: 0 additions & 3 deletions hosts/example-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
# Use this to configure your system environment (it replaces /etc/nixos/configuration.nix)
{
inputs,
lib,
config,
pkgs,
...
}:
{
Expand Down
1 change: 0 additions & 1 deletion hosts/hive/eter/monitoring.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
name,
nodes,
config,
...
}:
Expand Down
8 changes: 3 additions & 5 deletions hosts/vm/utm-nr/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
# and in the NixOS manual (accessible by running ‘nixos-help’).

{
config,
pkgs,
lib,
inputs,
...
}:
Expand Down Expand Up @@ -137,9 +135,9 @@

# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
environment.systemPackages = [
# pkgs.vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# pkgs.wget
];

# Some programs need SUID wrappers, can be configured further or are
Expand Down
2 changes: 0 additions & 2 deletions hosts/vm/utm/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
# Use this to configure your system environment (it replaces /etc/nixos/configuration.nix)
{
inputs,
lib,
config,
pkgs,
...
}:
Expand Down

0 comments on commit 495f527

Please sign in to comment.