diff options
Diffstat (limited to 'hosts/mercury')
| -rw-r--r-- | hosts/mercury/hjem.nix | 11 | ||||
| -rw-r--r-- | hosts/mercury/nixos.nix | 19 |
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 + ''; } |
