Compare commits

..

9 commits

9 changed files with 25 additions and 9 deletions

View file

@ -1,6 +1,6 @@
{ let
sources ? import ./npins, sources = import ./npins;
}: in
{ {
# for repl sessions # for repl sessions
inherit sources; inherit sources;

View file

@ -115,6 +115,7 @@ in
[ [
addons.sponsorblock addons.sponsorblock
addons.return-youtube-dislikes addons.return-youtube-dislikes
addons.shinigami-eyes
addons.consent-o-matic addons.consent-o-matic
]; ];
}; };

View file

@ -115,6 +115,7 @@ in
[ [
addons.sponsorblock addons.sponsorblock
addons.return-youtube-dislikes addons.return-youtube-dislikes
addons.shinigami-eyes
addons.consent-o-matic addons.consent-o-matic
]; ];
}; };

View file

@ -63,6 +63,13 @@
# This is the fascist one, just block it because I can't tell # This is the fascist one, just block it because I can't tell
0.0.0.0 nixos.wiki 0.0.0.0 nixos.wiki
# Gotta purify my smoos brain for a while
0.0.0.0 instagram.com
0.0.0.0 www.instagram.com
0.0.0.0 youtube.com
0.0.0.0 www.youtube.com
# The "people who you viewed can see you" thing is weird af # The "people who you viewed can see you" thing is weird af
0.0.0.0 linkedin.com 0.0.0.0 linkedin.com
0.0.0.0 www.linkedin.com 0.0.0.0 www.linkedin.com

View file

@ -12,12 +12,15 @@
# Script dependencies # Script dependencies
# #
home.packages = [ home.packages = [
pkgs.vivid
pkgs.nix-output-monitor # pretty ui for shells pkgs.nix-output-monitor # pretty ui for shells
]; ];
programs = { programs = {
fd.enable = true;
fzf.enable = true; fzf.enable = true;
# attempt to make color look less bad
vivid = {
enable = true;
activeTheme = "solarized-light"; # similar to milou
};
}; };
# #

View file

@ -83,7 +83,4 @@ set -x fzf_fd_opts --hidden --exclude=.git
# fzf-fish using patdiff would show incomplete diff, it is a bug # fzf-fish using patdiff would show incomplete diff, it is a bug
# don't do it # don't do it
# fd uses LS_COLORS
set -x LS_COLORS (vivid -m 24-bit generate solarized-light) # similar to milou
set -g sponge_purge_only_on_exit true set -g sponge_purge_only_on_exit true

View file

@ -28,6 +28,8 @@ in
"ctrl+-=decrease_font_size:1" "ctrl+-=decrease_font_size:1"
]; ];
mouse-hide-while-typing = true;
# Theme # Theme
background = "#fdf6e3"; background = "#fdf6e3";
foreground = "#073642"; foreground = "#073642";

View file

@ -2,6 +2,7 @@
writeShellApplication, writeShellApplication,
tmux, tmux,
procps, procps,
fd,
fzf, fzf,
gnused, gnused,
lib, lib,
@ -42,6 +43,7 @@ let
tmux-sessionizer = writeShellApplication { tmux-sessionizer = writeShellApplication {
name = "tmux-sessionizer"; name = "tmux-sessionizer";
runtimeInputs = [ runtimeInputs = [
fd
fzf fzf
gnused gnused
]; ];

View file

@ -1,8 +1,11 @@
let
sources = import ./npins;
in
{ {
sources ? import ./npins,
pkgs ? import sources.nixpkgs { pkgs ? import sources.nixpkgs {
overlays = map import [ overlays = map import [
./nix/overlays/disko.nix ./nix/overlays/disko.nix
./nix/overlays/npins.nix
]; ];
}, },
withGHC ? false, withGHC ? false,