my NixOS and nix-darwin config
0
fork

Configure Feed

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

deleted home.nix

+1 -32
+1 -1
hosts/Daedalus/default.nix
··· 49 49 "soduto" 50 50 "spotify" 51 51 "mac-mouse-fix" 52 - "tailscale" 52 + "tailscale-app" 53 53 ]; 54 54 masApps = { 55 55 "whatsapp" = 310633997;
-31
users/suri/home.nix
··· 1 - { config, ... }: 2 - let 3 - 4 - OOS = path: config.lib.file.mkOutOfStoreSymlink path; 5 - 6 - in { 7 - 8 - # imports = [ ./apps ]; 9 - # 10 - imports = [ 11 - 12 - ../../modules/home/wm/aerospace 13 - ../../modules/home/prompts/oh-my-posh 14 - ../../modules/home/shells/zsh 15 - ../../modules/home/term/ghostty 16 - ../../modules/home/tools 17 - 18 - ]; 19 - 20 - home.file = { 21 - # REMEMBER to lift the config file out, and refacts this after kenric puts his config 22 - # on the public internet, study and refactor my dotfiles! 23 - "Library/Application Support/com.mitchellh.ghostty".source = 24 - OOS "${config.home.homeDirectory}/dev/dots/apps/ghostty"; 25 - 26 - }; 27 - 28 - # The state version is required and should stay at the version you 29 - # originally installed. 30 - home.stateVersion = "25.05"; 31 - }