Compare commits

..

No commits in common. "e645fcebfe6a507becb832f781a3f3b3b406a021" and "edf313dfb3b6fe68f2f8f7e52ff812113ad40e98" have entirely different histories.

9 changed files with 9 additions and 25 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,7 +115,6 @@ 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,7 +115,6 @@ 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,13 +63,6 @@
# 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,15 +12,12 @@
# 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,4 +83,7 @@ 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,8 +28,6 @@ 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,7 +2,6 @@
writeShellApplication, writeShellApplication,
tmux, tmux,
procps, procps,
fd,
fzf, fzf,
gnused, gnused,
lib, lib,
@ -43,7 +42,6 @@ let
tmux-sessionizer = writeShellApplication { tmux-sessionizer = writeShellApplication {
name = "tmux-sessionizer"; name = "tmux-sessionizer";
runtimeInputs = [ runtimeInputs = [
fd
fzf fzf
gnused gnused
]; ];

View file

@ -1,11 +1,8 @@
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,