configurations for my servers and desktops
nix nixos flake dots dotfiles

chore: cypher -> neo

+4 -4
+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 - ### cypher 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 - darwinConfigurations.cypher = inputs.nix-darwin.lib.darwinSystem { 19 + darwinConfigurations.neo = inputs.nix-darwin.lib.darwinSystem { 20 20 specialArgs = inputs; 21 21 modules = [ 22 22 ./modules/common 23 23 ./modules/darwin 24 - ./hosts/cypher 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 - networking.hostName = "cypher"; 2 + networking.hostName = "neo"; 3 3 4 4 homebrew = { 5 5 taps = ["mhaeuser/mhaeuser"];