diff --git a/apps.nix b/apps.nix index a377eb6..5ea9c83 100644 --- a/apps.nix +++ b/apps.nix @@ -1,10 +1,6 @@ { pkgs, ... }: { - nixpkgs.config.permittedInsecurePackages = [ - "openssl-1.1.1w" - ]; - environment.systemPackages = with pkgs; [ pkgs.librewolf pkgs.spotify diff --git a/configuration.nix b/configuration.nix index 763adf6..9bd4b77 100644 --- a/configuration.nix +++ b/configuration.nix @@ -109,4 +109,8 @@ }; hardware.nvidia-container-toolkit.enable = true; + + nixpkgs.config.permittedInsecurePackages = [ + "openssl-1.1.1w" + ]; } diff --git a/dev.nix b/dev.nix index d7929bd..909cf5a 100644 --- a/dev.nix +++ b/dev.nix @@ -9,7 +9,7 @@ setSocketVariable = true; daemon.settings.features.cdi = true; }; - + # Tailscale services.tailscale.enable = true; services.tailscale.useRoutingFeatures = "client"; @@ -34,11 +34,12 @@ environment.systemPackages = with pkgs; [ pkgs.go pkgs.gotools + pkgs.rustup + pkgs.zig pkgs.fnm - pkgs.sublime4 - pkgs.sublime-merge pkgs.rclone pkgs.git + pkgs.helix + pkgs.zed-editor ]; - } diff --git a/unstable.nix b/unstable.nix index 00312b2..8a21164 100644 --- a/unstable.nix +++ b/unstable.nix @@ -1,9 +1,9 @@ { config, pkgs, ...}: let baseconfig = { allowUnfree = true; }; - unstable = import { config = baseconfig; }; + pkgs = import { config = baseconfig; }; in { environment.systemPackages = with pkgs; [ - unstable.ghostty + pkgs.ghostty ]; }