me like nix
0

Configure Feed

Select the types of activity you want to include in your feed.

use niri cache

author
Sean Aye
date (Aug 31, 2025, 2:20 PM -0400) commit 793952df parent 49e73a85 change-id qrqxvnsn
+18 -21
-1
hosts/common/common.nix
··· 43 43 44 44 programs.niri = { 45 45 enable = true; 46 - package = pkgs.niri; 47 46 }; 48 47 49 48 services.greetd = {
+18 -6
hosts/mira/configuration.nix
··· 123 123 }; 124 124 }; 125 125 126 + # Home Assistant service 127 + services.home-assistant = { 128 + enable = true; 129 + extraComponents = [ 130 + "esphome" 131 + "met" 132 + "radio_browser" 133 + ]; 134 + config = { 135 + default_config = { }; 136 + }; 137 + }; 138 + 126 139 # Enable the OpenSSH daemon. 127 140 # services.openssh.enable = true; 128 141 129 142 # Open ports in the firewall. 130 143 networking.firewall.allowedTCPPorts = [ 131 - 8096 132 - 5055 133 - 3000 144 + 8096 # jellyfin 145 + 5055 # jellyseer 146 + 3000 # vite dev port 147 + 8123 # home assistant 148 + 134 149 ]; 135 150 networking.firewall.allowedUDPPorts = [ 136 - 8096 137 - 5055 138 - 3000 139 151 ]; 140 152 141 153 # This value determines the NixOS release from which the default
-14
hosts/mira/home.nix
··· 5 5 ../common/home.nix 6 6 ]; 7 7 8 - services.home-assistant = { 9 - enable = true; 10 - extraComponents = [ 11 - "esphome" 12 - "met" 13 - "radio_browser" 14 - ]; 15 - config = { 16 - default_config = { }; 17 - }; 18 - }; 19 - 20 - networking.firewall.allowedTCPPorts = [ 8132 ]; 21 - 22 8 }