mirror of
https://codeberg.org/leana8959/.files.git
synced 2026-02-01 14:39:39 +00:00
Compare commits
9 commits
edf313dfb3
...
e645fcebfe
| Author | SHA1 | Date | |
|---|---|---|---|
| e645fcebfe | |||
| 64921628a8 | |||
| a9a85f16a4 | |||
| 94e3d872f0 | |||
| 08b934cf21 | |||
| b9093075f9 | |||
| 6c178a152d | |||
| b55accdd01 | |||
| 43fd967b78 |
9 changed files with 25 additions and 9 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
let
|
||||||
sources ? import ./npins,
|
sources = import ./npins;
|
||||||
}:
|
in
|
||||||
{
|
{
|
||||||
# for repl sessions
|
# for repl sessions
|
||||||
inherit sources;
|
inherit sources;
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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";
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue