diff --git a/hosts/goober/configuration.nix b/hosts/goober/configuration.nix index cdefbc7..862bcc3 100644 --- a/hosts/goober/configuration.nix +++ b/hosts/goober/configuration.nix @@ -88,6 +88,7 @@ "video" "networkmanager" "podman" + "dialout" ]; packages = with pkgs; [ @@ -133,7 +134,9 @@ }; documentation.dev.enable = true; - systemd.extraConfig = "DefaultLimitNOFILE=524288"; + systemd.settings.Manager = { + "DefaultLimitNOFILE" = "524288"; + }; security.pam.loginLimits = [ { domain = "misschloe777"; @@ -142,6 +145,9 @@ value = "524288"; } ]; + nixpkgs.config.permittedInsecurePackages = [ + "libsoup-2.74.3" + ]; # This option defines the first version of NixOS you have installed on this particular machine, # and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions. diff --git a/hosts/goober/features/software/workstation.nix b/hosts/goober/features/software/workstation.nix index 96b295f..6f8bb63 100644 --- a/hosts/goober/features/software/workstation.nix +++ b/hosts/goober/features/software/workstation.nix @@ -79,6 +79,8 @@ # games tetrio-desktop osu-lazer-bin + ungoogled-chromium + esptool ]; services.mpdscribble = { diff --git a/hosts/workstation/features/software/workstation.nix b/hosts/workstation/features/software/workstation.nix index 05392e2..e079a7e 100644 --- a/hosts/workstation/features/software/workstation.nix +++ b/hosts/workstation/features/software/workstation.nix @@ -22,7 +22,6 @@ gvfs nil bitwarden - qutebrowser ]; virtualisation.containers.enable = true;