aboutsummaryrefslogtreecommitdiff
path: root/hosts/mercury
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-01-24 07:14:28 -0600
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-01-24 07:14:28 -0600
commit16adebfb9e6c0c3e3eb0bc07398b90adf48e914e (patch)
tree577a739d2b776857ddecdf3de8a37fff1354f541 /hosts/mercury
parentce7f1d44b874dcaf711dfe7118ef18f9394033df (diff)
fine we'll just do it the right way
Diffstat (limited to 'hosts/mercury')
-rw-r--r--hosts/mercury/hjem.nix11
-rw-r--r--hosts/mercury/nixos.nix19
2 files changed, 17 insertions, 13 deletions
diff --git a/hosts/mercury/hjem.nix b/hosts/mercury/hjem.nix
index e203477..72026c5 100644
--- a/hosts/mercury/hjem.nix
+++ b/hosts/mercury/hjem.nix
@@ -4,26 +4,23 @@
...
}: {
packages = with pkgs; [
- # GUI apps
tor-browser # don't ask
+
obsidian
kdePackages.kleopatra
- mpv
- musescore
anki
+ musescore
+ mpv
bluetuith
kew # music player
- (prismlauncher.override {
- jdks = [pkgs.jdk17_headless];
- })
+ prismlauncher
vital
captive-browser # https://words.filippo.io/captive-browser
-
inputs.glide-browser.packages."x86_64-linux".default
];
diff --git a/hosts/mercury/nixos.nix b/hosts/mercury/nixos.nix
index dcdd8c6..8052bb1 100644
--- a/hosts/mercury/nixos.nix
+++ b/hosts/mercury/nixos.nix
@@ -12,6 +12,8 @@
inputs.lanzaboote.nixosModules.lanzaboote
];
+ facter.reportPath = ./facter.json;
+
services.syncthing = {
enable = true;
user = "collin";
@@ -20,12 +22,17 @@
services.printing.enable = true;
- facter.reportPath = ./facter.json;
-
environment.defaultPackages = lib.mkForce []; # im not a noob
- networking.firewall = {
- allowedUDPPorts = [445];
- allowedTCPPorts = [8000];
- };
+ # programs.firefox.policies.Preferences.ExtensionSettings = {
+
+ # };
+
+ programs.ssh.extraConfig = ''
+ Host ganymede
+ HostName 70.130.121.193
+ User collin
+ IdentityFile /home/collin/.ssh/id_ed25519
+ LocalForward 8015 127.0.0.1:8015
+ '';
}