tangled
alpha
login
or
join now
devins.page
/
flake
0
fork
atom
configurations for my servers and desktops
nix
nixos
flake
dots
dotfiles
0
fork
atom
overview
issues
pulls
pipelines
chore: cypher -> neo
devins.page
2 months ago
38d10988
23d651f9
+4
-4
3 changed files
expand all
collapse all
unified
split
README.md
flake.nix
hosts
neo
default.nix
+1
-1
README.md
···
10
10
11
11
my home server hosting things like navidrome, jellyfin, backups, etc. runs on my old pc.
12
12
13
13
-
### cypher
13
13
+
### neo
14
14
15
15
my macbook, my main computer. i mostly use homebrew for gui applications if possible, and use nix for cli.
+2
-2
flake.nix
···
16
16
};
17
17
18
18
outputs = inputs: {
19
19
-
darwinConfigurations.cypher = inputs.nix-darwin.lib.darwinSystem {
19
19
+
darwinConfigurations.neo = inputs.nix-darwin.lib.darwinSystem {
20
20
specialArgs = inputs;
21
21
modules = [
22
22
./modules/common
23
23
./modules/darwin
24
24
-
./hosts/cypher
24
24
+
./hosts/neo
25
25
inputs.home-manager.darwinModules.home-manager
26
26
inputs.mac-app-util.darwinModules.default
27
27
{
+1
-1
hosts/cypher/default.nix
hosts/neo/default.nix
···
1
1
{pkgs, ...}: {
2
2
-
networking.hostName = "cypher";
2
2
+
networking.hostName = "neo";
3
3
4
4
homebrew = {
5
5
taps = ["mhaeuser/mhaeuser"];