alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
use niri cache
author
Sean Aye
date
9 months ago
(Aug 31, 2025, 2:20 PM -0400)
commit
793952df
793952df1c2343177ee422fd32bc4eb7dfea0a54
parent
49e73a85
49e73a8574b65a856d451002975db7c43135ef68
change-id
qrqxvnsn
qrqxvnsnxplwxtpmtkmyqttzzonmlqmk
+18
-21
3 changed files
Expand all
Collapse all
Unified
Split
hosts
common
common.nix
mira
configuration.nix
home.nix
-1
hosts/common/common.nix
Reviewed
···
43
43
44
44
programs.niri = {
45
45
enable = true;
46
46
-
package = pkgs.niri;
47
46
};
48
47
49
48
services.greetd = {
+18
-6
hosts/mira/configuration.nix
Reviewed
···
123
123
};
124
124
};
125
125
126
126
+
# Home Assistant service
127
127
+
services.home-assistant = {
128
128
+
enable = true;
129
129
+
extraComponents = [
130
130
+
"esphome"
131
131
+
"met"
132
132
+
"radio_browser"
133
133
+
];
134
134
+
config = {
135
135
+
default_config = { };
136
136
+
};
137
137
+
};
138
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
131
-
8096
132
132
-
5055
133
133
-
3000
144
144
+
8096 # jellyfin
145
145
+
5055 # jellyseer
146
146
+
3000 # vite dev port
147
147
+
8123 # home assistant
148
148
+
134
149
];
135
150
networking.firewall.allowedUDPPorts = [
136
136
-
8096
137
137
-
5055
138
138
-
3000
139
151
];
140
152
141
153
# This value determines the NixOS release from which the default
-14
hosts/mira/home.nix
Reviewed
···
5
5
../common/home.nix
6
6
];
7
7
8
8
-
services.home-assistant = {
9
9
-
enable = true;
10
10
-
extraComponents = [
11
11
-
"esphome"
12
12
-
"met"
13
13
-
"radio_browser"
14
14
-
];
15
15
-
config = {
16
16
-
default_config = { };
17
17
-
};
18
18
-
};
19
19
-
20
20
-
networking.firewall.allowedTCPPorts = [ 8132 ];
21
21
-
22
8
}