From 7443a419bdf91ae661a7fed35576c9e7497a9034 Mon Sep 17 00:00:00 2001 From: Ranomier <> Date: Sat, 12 Apr 2025 14:53:12 +0200 Subject: [PATCH] remove unneeded elipses --- hosts/crocoite/boot.nix | 2 +- hosts/factorio/boot.nix | 2 +- modules/accessibility.nix | 2 +- modules/default.nix | 2 +- modules/firewall.nix | 2 +- modules/hardware/bluetooth.nix | 2 +- modules/hardware/default.nix | 2 +- modules/hardware/fwupd.nix | 2 +- modules/hardware/trackpoint.nix | 2 +- modules/locale.nix | 2 +- modules/pkg_mgrmnt/default.nix | 2 +- modules/pkg_mgrmnt/flatpak.nix | 2 +- modules/pkg_mgrmnt/garbage-collect.nix | 2 +- modules/sec_auth/default.nix | 2 +- modules/software/android.nix | 2 +- modules/software/browser/default.nix | 2 +- modules/software/default.nix | 2 +- modules/software/flatpak.nix | 2 +- modules/software/neovim.nix | 2 +- modules/software/nix-helper/default.nix | 2 +- modules/software/office/default.nix | 2 +- modules/software/shells/default.nix | 2 +- modules/software/shells/zsh.nix | 2 +- modules/users/default.nix | 2 +- modules/wm_and_de/components/dbus.nix | 2 +- modules/wm_and_de/default.nix | 2 +- tests/default.nix | 2 +- 27 files changed, 27 insertions(+), 27 deletions(-) diff --git a/hosts/crocoite/boot.nix b/hosts/crocoite/boot.nix index 1961f9e..c722e65 100644 --- a/hosts/crocoite/boot.nix +++ b/hosts/crocoite/boot.nix @@ -1,4 +1,4 @@ -{...}: { +{ boot.loader = { systemd-boot.enable = true; systemd-boot.configurationLimit = 20; diff --git a/hosts/factorio/boot.nix b/hosts/factorio/boot.nix index 0c1d56d..52fae81 100644 --- a/hosts/factorio/boot.nix +++ b/hosts/factorio/boot.nix @@ -1,4 +1,4 @@ -{...}: { +{ # Use the GRUB 2 boot loader. #boot.loader.grub.enable = true; # Define on which hard drive you want to install Grub. diff --git a/modules/accessibility.nix b/modules/accessibility.nix index b26d138..01f1247 100644 --- a/modules/accessibility.nix +++ b/modules/accessibility.nix @@ -1,4 +1,4 @@ -{...}: { +{ services = { speechd.enable = true; orca.enable = true; diff --git a/modules/default.nix b/modules/default.nix index ef6fbfe..3d82f4f 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -1,4 +1,4 @@ -{...}: { +{ imports = [ #./plymouth.nix ./accessibility.nix diff --git a/modules/firewall.nix b/modules/firewall.nix index d61c660..27e120a 100644 --- a/modules/firewall.nix +++ b/modules/firewall.nix @@ -1,4 +1,4 @@ -{...}: { +{ # Open ports in the firewall. networking.firewall.allowedTCPPorts = [8080 10001 10002]; networking.firewall.allowedUDPPorts = [8080 10001 10002]; diff --git a/modules/hardware/bluetooth.nix b/modules/hardware/bluetooth.nix index d25a0ec..900e469 100644 --- a/modules/hardware/bluetooth.nix +++ b/modules/hardware/bluetooth.nix @@ -1,4 +1,4 @@ -{...}: { +{ hardware.bluetooth.enable = true; # enables support for Bluetooth hardware.bluetooth.powerOnBoot = false; # powers up the default Bluetooth controller on boot diff --git a/modules/hardware/default.nix b/modules/hardware/default.nix index 911e5ca..e24baff 100644 --- a/modules/hardware/default.nix +++ b/modules/hardware/default.nix @@ -1,4 +1,4 @@ -{...}: { +{ imports = [ ./bluetooth.nix ./fwupd.nix diff --git a/modules/hardware/fwupd.nix b/modules/hardware/fwupd.nix index e3754bf..ebb5ec3 100644 --- a/modules/hardware/fwupd.nix +++ b/modules/hardware/fwupd.nix @@ -1,4 +1,4 @@ -{...}: { +{ # A system daemon to allow session software to update firmware services.fwupd.enable = true; } diff --git a/modules/hardware/trackpoint.nix b/modules/hardware/trackpoint.nix index aca3024..fd76c03 100644 --- a/modules/hardware/trackpoint.nix +++ b/modules/hardware/trackpoint.nix @@ -1,4 +1,4 @@ -{...}: { +{ # probably does nothing on my amd laptop. need to check hardware.trackpoint.speed = 200; } diff --git a/modules/locale.nix b/modules/locale.nix index e3cae41..f4903ee 100644 --- a/modules/locale.nix +++ b/modules/locale.nix @@ -1,4 +1,4 @@ -{...}: { +{ # Set your time zone. time.timeZone = "Europe/Berlin"; diff --git a/modules/pkg_mgrmnt/default.nix b/modules/pkg_mgrmnt/default.nix index 57e40d2..49732db 100644 --- a/modules/pkg_mgrmnt/default.nix +++ b/modules/pkg_mgrmnt/default.nix @@ -1,4 +1,4 @@ -{...}: { +{ imports = [ ./flatpak.nix ./podman.nix diff --git a/modules/pkg_mgrmnt/flatpak.nix b/modules/pkg_mgrmnt/flatpak.nix index 54b2cef..023ed07 100644 --- a/modules/pkg_mgrmnt/flatpak.nix +++ b/modules/pkg_mgrmnt/flatpak.nix @@ -1,4 +1,4 @@ -{...}: { +{ services.flatpak = { enable = true; update.auto = { diff --git a/modules/pkg_mgrmnt/garbage-collect.nix b/modules/pkg_mgrmnt/garbage-collect.nix index 46a517b..1a5d7d5 100644 --- a/modules/pkg_mgrmnt/garbage-collect.nix +++ b/modules/pkg_mgrmnt/garbage-collect.nix @@ -1,4 +1,4 @@ -{...}: { +{ nix = { optimise = { automatic = true; diff --git a/modules/sec_auth/default.nix b/modules/sec_auth/default.nix index cadf739..2bfd404 100644 --- a/modules/sec_auth/default.nix +++ b/modules/sec_auth/default.nix @@ -1,4 +1,4 @@ -{...}: { +{ imports = [ ./apparmor.nix ./firejail.nix diff --git a/modules/software/android.nix b/modules/software/android.nix index 766f4f4..a31f709 100644 --- a/modules/software/android.nix +++ b/modules/software/android.nix @@ -1,4 +1,4 @@ -{...}: { +{ # for running android apps # also starts the systemd service waydroid-container virtualisation.waydroid.enable = true; diff --git a/modules/software/browser/default.nix b/modules/software/browser/default.nix index 41597c1..9903eb0 100644 --- a/modules/software/browser/default.nix +++ b/modules/software/browser/default.nix @@ -1,4 +1,4 @@ -{...}: { +{ imports = [ ./brave.nix ./firefox.nix diff --git a/modules/software/default.nix b/modules/software/default.nix index ea3ff15..53958b1 100644 --- a/modules/software/default.nix +++ b/modules/software/default.nix @@ -1,4 +1,4 @@ -{...}: { +{ imports = [ ./audio_video.nix ./flatpak.nix diff --git a/modules/software/flatpak.nix b/modules/software/flatpak.nix index cfb4276..c18767a 100644 --- a/modules/software/flatpak.nix +++ b/modules/software/flatpak.nix @@ -1,4 +1,4 @@ -{...}: { +{ services.flatpak = { packages = [ { diff --git a/modules/software/neovim.nix b/modules/software/neovim.nix index a91b259..8e9546e 100644 --- a/modules/software/neovim.nix +++ b/modules/software/neovim.nix @@ -1,4 +1,4 @@ -{...}: { +{ programs.neovim = { enable = true; viAlias = true; diff --git a/modules/software/nix-helper/default.nix b/modules/software/nix-helper/default.nix index 22e6296..3de729c 100644 --- a/modules/software/nix-helper/default.nix +++ b/modules/software/nix-helper/default.nix @@ -1,4 +1,4 @@ -{...}: { +{ imports = [ #./doc.nix ./index.nix diff --git a/modules/software/office/default.nix b/modules/software/office/default.nix index 786c7ca..fdf9d92 100644 --- a/modules/software/office/default.nix +++ b/modules/software/office/default.nix @@ -1,4 +1,4 @@ -{...}: { +{ imports = [ ./libreoffice.nix ]; diff --git a/modules/software/shells/default.nix b/modules/software/shells/default.nix index 9bc0c56..1991480 100644 --- a/modules/software/shells/default.nix +++ b/modules/software/shells/default.nix @@ -1,4 +1,4 @@ -{...}: { +{ imports = [ ./zsh.nix ./fish.nix diff --git a/modules/software/shells/zsh.nix b/modules/software/shells/zsh.nix index 62b4a41..3b0fe29 100644 --- a/modules/software/shells/zsh.nix +++ b/modules/software/shells/zsh.nix @@ -1,4 +1,4 @@ -{...}: { +{ system.userActivationScripts.zshrc = "touch .zshrc"; programs.zsh = { diff --git a/modules/users/default.nix b/modules/users/default.nix index ade0a0f..dc0b97d 100644 --- a/modules/users/default.nix +++ b/modules/users/default.nix @@ -1,4 +1,4 @@ -{...}: { +{ imports = [ ./ranomier.nix ]; diff --git a/modules/wm_and_de/components/dbus.nix b/modules/wm_and_de/components/dbus.nix index f8aa5f1..92c1631 100644 --- a/modules/wm_and_de/components/dbus.nix +++ b/modules/wm_and_de/components/dbus.nix @@ -1,4 +1,4 @@ -{...}: { +{ services.dbus = { implementation = "broker"; apparmor = "enabled"; diff --git a/modules/wm_and_de/default.nix b/modules/wm_and_de/default.nix index f4baad5..aa3571f 100644 --- a/modules/wm_and_de/default.nix +++ b/modules/wm_and_de/default.nix @@ -1,4 +1,4 @@ -{...}: { +{ imports = [ ./hyprland.nix #./qtile.nix diff --git a/tests/default.nix b/tests/default.nix index 9258c1c..186f961 100644 --- a/tests/default.nix +++ b/tests/default.nix @@ -1,4 +1,4 @@ -{...}: { +{ imports = [ ./glitchtip-container.nix ];