my NixOS and nix-darwin config
0
fork

Configure Feed

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

Change OOS path from Nyx to nyx

suri 177d5849 da2770b0

+8 -8
+1 -1
modules/home/prompts/oh-my-posh/default.nix
··· 18 18 home.packages = [ pkgs.oh-my-posh ]; 19 19 20 20 home.file.".config/oh-my-posh/theme.toml".source = 21 - config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/Nyx/modules/home/prompts/oh-my-posh/mypure.omp.toml"; 21 + config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nyx/modules/home/prompts/oh-my-posh/mypure.omp.toml"; 22 22 }; 23 23 24 24 }
+1 -1
modules/home/prompts/starship/default.nix
··· 20 20 home.file.".config/starship.toml".source = 21 21 22 22 config.lib.file.mkOutOfStoreSymlink 23 - "${config.home.homeDirectory}/Nyx/modules/home/prompts/starship/starship.toml"; 23 + "${config.home.homeDirectory}/nyx/modules/home/prompts/starship/starship.toml"; 24 24 25 25 }; 26 26
+1 -1
modules/home/shells/default.nix
··· 4 4 5 5 rebuildCmd = if pkgs.stdenv.isDarwin then "darwin-rebuild" else "nixos-rebuild"; 6 6 7 - flakeDir = "${config.home.homeDirectory}/Nyx"; 7 + flakeDir = "${config.home.homeDirectory}/nyx"; 8 8 9 9 systemName = "$(hostname -s)"; 10 10 in
+1 -1
modules/home/term/ghostty/default.nix
··· 9 9 10 10 "${config.home.homeDirectory}/.config/ghostty".source = 11 11 config.lib.file.mkOutOfStoreSymlink 12 - "${config.home.homeDirectory}/Nyx/modules/home/term/ghostty/ghostty"; 12 + "${config.home.homeDirectory}/nyx/modules/home/term/ghostty/ghostty"; 13 13 14 14 }; 15 15 };
+1 -1
modules/home/tools/helix/default.nix
··· 19 19 20 20 # symlink files 21 21 home.file.".config/helix".source = 22 - config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/Nyx/modules/home/tools/helix/helix"; 22 + config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nyx/modules/home/tools/helix/helix"; 23 23 24 24 programs.helix = { 25 25 enable = true;
+1 -1
modules/home/tools/jujutsu/default.nix
··· 22 22 home.file = { 23 23 24 24 "${config.home.homeDirectory}/.config/jj/config.toml".source = 25 - config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/Nyx/modules/home/tools/jujutsu/config.toml"; 25 + config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nyx/modules/home/tools/jujutsu/config.toml"; 26 26 27 27 }; 28 28 };
+1 -1
modules/home/tools/zellij/default.nix
··· 22 22 config = mkIf (cfg.enable) { 23 23 home.file.".config/zellij/config.kdl".source = 24 24 config.lib.file.mkOutOfStoreSymlink 25 - "${config.home.homeDirectory}/Nyx/modules/home/tools/zellij/config.kdl"; 25 + "${config.home.homeDirectory}/nyx/modules/home/tools/zellij/config.kdl"; 26 26 home = { packages = [ pkgs.zellij pkgs.fzf suri_zellij_session_helper ]; }; 27 27 28 28 };
+1 -1
modules/home/wm/aerospace/default.nix
··· 10 10 11 11 home.file.".aerospace.toml".source = 12 12 config.lib.file.mkOutOfStoreSymlink 13 - "${config.home.homeDirectory}/Nyx/modules/home/wm/aerospace/aerospace.toml"; 13 + "${config.home.homeDirectory}/nyx/modules/home/wm/aerospace/aerospace.toml"; 14 14 15 15 launchd.agents.aerospace = { 16 16 enable = true;