this repo has no description
4
fork

Configure Feed

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

l

+27 -2
+1
hosts/tkaronto/default.nix
··· 18 18 ../../modules/persist 19 19 ../../modules/gamemode 20 20 ../../modules/network/iwd.nix 21 + ../../modules/syncthing 21 22 ../../users/root 22 23 ../../users/patriot 23 24 ]
+12
modules/syncthing/default.nix
··· 1 + {config, inputs, ...}: { 2 + users.users.syncthing.extraGroups = ["users"]; 3 + services.syncthing = { 4 + enable = true; 5 + devices.redmi-phone = { 6 + id = builtins.readFile "${inputs.self}/secrets/redmi-phone.syncthing.id"; 7 + introducer = true; 8 + autoAcceptFolders = true; 9 + }; 10 + dataDir = "${config.system.persistDir}/syncthing"; 11 + }; 12 + }
secrets/redmi-phone.syncthing.id

This is a binary file and will not be displayed.

+4
users/modules/obsidian/default.nix
··· 1 + {pkgs, config, lib, ...}: { 2 + home.packages = [pkgs.obsidian]; 3 + home.persistence."${config.system.persistDir}${config.home.homeDirectory}".directories = [".config/obsidian"]; 4 + }
+10 -2
users/patriot/default.nix
··· 63 63 isSystem = false; 64 64 }; 65 65 }; 66 + syncthing.folders = { 67 + notes = { 68 + enable = true; 69 + path = "${config.users.users.patriot.home}/notes"; 70 + devices = ["redmi-phone"]; 71 + ignorePerms = true; 72 + }; 73 + }; 66 74 }; 67 75 # gnome keyring better fr fr 68 76 security.pam.services.patriot = { ··· 93 101 # cli stuff 94 102 ["zoxide" "zsh" "fzf" "starship" "direnv"] 95 103 # dev stuff 96 - ["helix" "git" "ssh"] 104 + ["helix" "git" "ssh" "obsidian"] 97 105 ]; 98 106 in 99 107 l.flatten [ ··· 119 127 # caches / history stuff 120 128 ".directory_history" 121 129 ".cache" 130 + "notes" 122 131 ] 123 132 ++ mkPaths ".local/share" [ 124 133 "direnv" ··· 172 181 cloudflared 173 182 lutris 174 183 protontricks 175 - obsidian 176 184 ]; 177 185 }; 178 186 programs = {