@jaspermayone.com's dotfiles
0
fork

Configure Feed

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

discord pt2

+13 -8
+13 -8
home/default.nix
··· 69 69 }; 70 70 71 71 # RC files from ../rc/ directory (each file is linked as-is to ~/) 72 - home.file = builtins.listToAttrs ( 73 - map (name: { 74 - name = name; 75 - value = { 76 - source = ../rc/${name}; 77 - }; 78 - }) (builtins.attrNames (builtins.readDir ../rc)) 79 - ); 72 + home.file = 73 + builtins.listToAttrs ( 74 + map (name: { 75 + name = name; 76 + value = { 77 + source = ../rc/${name}; 78 + }; 79 + }) (builtins.attrNames (builtins.readDir ../rc)) 80 + ) 81 + // lib.optionalAttrs (!isDarwin) { 82 + # Discord settings (skip update nag on NixOS) 83 + ".config/discord/settings.json".text = builtins.toJSON { SKIP_HOST_UPDATE = true; }; 84 + }; 80 85 81 86 home.packages = with pkgs; [ 82 87 eza