diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-03-19 10:59:12 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-03-19 10:59:12 -0500 |
| commit | 2bc17b5cfd65a9537a9c56e74c9e7918156015e0 (patch) | |
| tree | a8a323c6571556d3f1b5e8f197e17ed447f8daa4 /hosts/mercury/nixos.nix | |
| parent | a97c10944e382cc7c439339c88a007401b67beeb (diff) | |
changes (idk)
Diffstat (limited to 'hosts/mercury/nixos.nix')
| -rw-r--r-- | hosts/mercury/nixos.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/hosts/mercury/nixos.nix b/hosts/mercury/nixos.nix index 5d8a63f..46153ae 100644 --- a/hosts/mercury/nixos.nix +++ b/hosts/mercury/nixos.nix @@ -1,6 +1,8 @@ { lib, + pkgs, inputs, + config, ... }: { imports = [ @@ -29,6 +31,8 @@ } ]; + services.dbus.implementation = "broker"; + environment.defaultPackages = lib.mkForce []; # im not a noob security.pki.certificates = [ @@ -55,8 +59,22 @@ Host ganymede HostName williamsfam.us.com Port 22 + + Host gliese + HostName 10.100.0.1 + User green + IdentityFile ${config.collinux.secrets."gliese-key".path} + ProxyJump collin@ganymede ''; + ## UUGGGG I DINT"W ATNT TO DO THIS + programs.nix-ld = { + enable = true; + libraries = with pkgs; [ + libGL + ]; + }; + programs.firefox.policies.ExtensionSettings = { "foxyproxy@eric.h.jung" = { installation_mode = "force_installed"; |
