From 7d57b2c17c1e5e0d4ea2adce1493e46a58bf3810 Mon Sep 17 00:00:00 2001 From: liv Date: Sat, 31 Aug 2024 12:33:12 +0200 Subject: [PATCH] clean up nixos configs --- nixos/common/default.nix | 12 ++---------- nixos/enoko/configuration.nix | 5 ----- 2 files changed, 2 insertions(+), 15 deletions(-) diff --git a/nixos/common/default.nix b/nixos/common/default.nix index fad4c1c..d758730 100644 --- a/nixos/common/default.nix +++ b/nixos/common/default.nix @@ -19,13 +19,6 @@ "ca-derivations" ]; }; - - # disabled in favour of nh - # gc = { - # automatic = true; - # dates = "weekly"; - # options = "--delete-older-than +3"; - # }; }; users.users.lu.extraGroups = [ "audio" ]; @@ -38,9 +31,6 @@ # use initrd systemd boot boot.initrd.systemd.enable = true; - # use iwd for wifi - networking.networkmanager.wifi.backend = "iwd"; - # use a tmpfs boot.tmp.useTmpfs = true; systemd.services.nix-daemon = { @@ -53,6 +43,8 @@ # use dbus-broker for faster dbus services.dbus.implementation = "broker"; + systemd.services.NetworkManager-wait-online.enable = false; + # set up a keyring services.gnome.gnome-keyring.enable = true; security.pam.services.hyprland.enableGnomeKeyring = true; diff --git a/nixos/enoko/configuration.nix b/nixos/enoko/configuration.nix index d964133..bb4718d 100644 --- a/nixos/enoko/configuration.nix +++ b/nixos/enoko/configuration.nix @@ -87,11 +87,6 @@ }; }; - # hyprland stuff - # programs.hyprland = { - # enable = true; - # }; - # enable ppd specifically for the framework services.power-profiles-daemon.enable = true;