My nixos configuration
2
fork

Configure Feed

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

make it loadable

+2 -1
+1
home/modules/default.nix
··· 12 12 "programs/openshift" = ./programs/openshift; 13 13 "programs/p10k" = ./programs/p10k; 14 14 "programs/rbw" = ./programs/rbw; 15 + "programs/wezterm" = ./programs/wezterm; 15 16 16 17 "services/insync" = ./services/insync; 17 18 "services/restic" = ./services/restic;
+1 -1
home/modules/wezterm/default.nix home/modules/programs/wezterm/default.nix
··· 29 29 config.harfbuzz_features = { 'calt=0', 'clig=0', 'liga=0' } 30 30 31 31 -- set the font 32 - config.font_dirs = { '/home/nmelzer/.nix-profile/share/fonts/otf' } 32 + config.font_dirs = { '${pkgs.departure-mono}/share/fonts/otf' } 33 33 config.font_size = 11.0 * 1.25 34 34 config.font = wezterm.font("Departure Mono") 35 35