my NixOS and nix-darwin config
0
fork

Configure Feed

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

added home.nix

+28
+28
users/suri/home.nix
··· 1 + { config, pkgs, ... }: 2 + let 3 + 4 + OOS = path: config.lib.file.mkOutOfStoreSymlink path; 5 + 6 + in { 7 + 8 + # imports = [ ./apps ]; 9 + 10 + home.packages = [ 11 + 12 + pkgs.fastfetch 13 + 14 + ]; 15 + 16 + home.file = { 17 + 18 + # REMEMBER to lift the config file out, and refacts this after kenric puts his config 19 + # on the public internet, study and refactor my dotfiles! 20 + "Library/Application Support/com.mitchellh.ghostty".source = 21 + OOS "${config.home.homeDirectory}/dev/dots/apps/ghostty"; 22 + 23 + }; 24 + 25 + # The state version is required and should stay at the version you 26 + # originally installed. 27 + home.stateVersion = "25.05"; 28 + }