adding the usual suspects emulator plugins
This commit is contained in:
parent
ae3f40b06f
commit
e998e632b4
14 changed files with 199 additions and 3 deletions
|
@ -21,6 +21,7 @@
|
|||
zip
|
||||
stdenv
|
||||
tldr
|
||||
delta
|
||||
htop
|
||||
dconf
|
||||
dconf2nix
|
||||
|
@ -153,9 +154,11 @@
|
|||
|
||||
fishPlugins.foreign-env
|
||||
fishPlugins.z
|
||||
fishPlugins.fzf
|
||||
fishPlugins.fzf-fish
|
||||
fishPlugins.bass
|
||||
fishPlugins.autopair
|
||||
fishPlugins.forgit
|
||||
fishPlugins.colored-man-pages
|
||||
|
||||
via
|
||||
vial
|
||||
|
@ -313,7 +316,10 @@
|
|||
(callPackage ../packages/amplocker/package.nix {})
|
||||
(callPackage ../packages/chair-audio/snare.nix {})
|
||||
(callPackage ../packages/chair-audio/cymb.nix {})
|
||||
# (callPackage ../packages/u-he/twangstrom.nix {})
|
||||
(callPackage ../packages/the-usual-suspects/vavra/vavra.nix {})
|
||||
(callPackage ../packages/the-usual-suspects/xenia/xenia.nix {})
|
||||
(callPackage ../packages/the-usual-suspects/ostirus/ostirus.nix {})
|
||||
(callPackage ../packages/the-usual-suspects/osirus/osirus.nix {})
|
||||
|
||||
# Fonts
|
||||
fira-code
|
||||
|
@ -366,6 +372,17 @@
|
|||
".j" = "just -g";
|
||||
"em" = "emacsclient -n -r";
|
||||
};
|
||||
plugins = [
|
||||
{
|
||||
name = "upto";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "Markcial";
|
||||
repo = "upto";
|
||||
rev = "2d1f35453fb55747d50da8c1cb1809840f99a646";
|
||||
sha256 = "sha256-Lv2XtP2x9dkIkUUjMBWVpAs/l55Ztu7gIjKYH6ZzK4s=";
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
starship = {
|
||||
enable = true;
|
||||
|
@ -569,6 +586,8 @@
|
|||
MOZ_ENABLE_WAYLAND = 1;
|
||||
};
|
||||
|
||||
|
||||
# moving files!
|
||||
home.file.".npmrc".source = ../dotfiles/dot_npmrc;
|
||||
# xdg.configFile."kmonad".source = ../dotfiles/dot_config/kmonad;
|
||||
xdg.configFile."just/justfile".source = ../dotfiles/dot_config/just/justfile;
|
||||
|
@ -598,4 +617,25 @@
|
|||
};
|
||||
|
||||
home.file.".local/share/flf".source = ../dotfiles/dot_local/share/flf;
|
||||
|
||||
home.file.".local/share/The Usual Suspects/Vavra/roms" = {
|
||||
recursive = true;
|
||||
source = ../packages/the-usual-suspects/vavra/roms;
|
||||
};
|
||||
home.file.".local/share/The Usual Suspects/Vavra/patchmanager" = {
|
||||
recursive = true;
|
||||
source = ../packages/the-usual-suspects/vavra/patchmanager;
|
||||
};
|
||||
home.file.".local/share/The Usual Suspects/Xenia/roms" = {
|
||||
recursive = true;
|
||||
source = ../packages/the-usual-suspects/xenia/roms;
|
||||
};
|
||||
home.file.".local/share/The Usual Suspects/Osirus/roms" = {
|
||||
recursive = true;
|
||||
source = ../packages/the-usual-suspects/osirus/roms;
|
||||
};
|
||||
home.file.".local/share/The Usual Suspects/OsTIrus/roms" = {
|
||||
recursive = true;
|
||||
source = ../packages/the-usual-suspects/ostirus/roms;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue