Compare commits

..

9 commits

9 changed files with 25 additions and 9 deletions

View file

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

View file

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

View file

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

View file

@ -63,6 +63,13 @@
# This is the fascist one, just block it because I can't tell
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
0.0.0.0 linkedin.com
0.0.0.0 www.linkedin.com

View file

@ -12,12 +12,15 @@
# Script dependencies
#
home.packages = [
pkgs.vivid
pkgs.nix-output-monitor # pretty ui for shells
];
programs = {
fd.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
# 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

View file

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

View file

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

View file

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