feat: remove old files

This commit is contained in:
Ahwx 2024-06-21 09:44:06 +02:00
parent a7129fbddf
commit e2c2becb36
14 changed files with 0 additions and 264 deletions

View file

@ -1,4 +0,0 @@
{ pkgs, ... }:
{
home.packages = (with pkgs; [ aseprite ]);
}

View file

@ -1,5 +0,0 @@
{ pkgs, ... }:
{
home.packages = (with pkgs; [ audacious ]);
xdg.configFile."audacious/config".source = ./config;
}

View file

@ -1,23 +0,0 @@
[audacious]
equalizer_active=TRUE
equalizer_bands=-1,1,2,2,1,0,0,-1,-1,-1
soft_clipping=TRUE
[audgui]
filesel_path=/home/frostphoenix/Music
[audqt]
icon_theme=audacious-flat-dark
theme=dark
[pipewire]
volume_left=35
volume_right=35
[qtui]
column_widths=25,25,275,175,50,175,175,25,100,28,75,275,275,275,75,275,175
menu_visible=FALSE
player_height=581
player_width=941
playlist_headers=FALSE
playlist_headers_bold=TRUE

View file

@ -1,11 +0,0 @@
{ inputs, pkgs, ... }:
{
programs.cava = {
enable = true;
};
# https://github.com/catppuccin/cava
home.file.".config/cava/config".text = ''
# custom cava config
'' + builtins.readFile "${inputs.catppuccin-cava}/mocha.cava";
}

View file

@ -1,21 +0,0 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
(discord.override {
withVencord = true;
})
];
xdg.configFile."Vencord/themes/custom.css".text = ''
/**
* @name Catppuccin Mocha
* @author winston#0001
* @authorId 505490445468696576
* @version 0.2.0
* @description 🎮 Soothing pastel theme for Discord
* @website https://github.com/catppuccin/discord
* @invite r6Mdz5dpFc
* **/
@import url("https://catppuccin.github.io/discord/dist/catppuccin-mocha.theme.css");
'';
}

View file

@ -1,8 +0,0 @@
uBlock Origin # + filter for shorts
ScrollAnywhere # disable momentum + reverse dirrection
Return YouTube Dislike
Stylus # import file import.json
Firefox Color # catppuccin
Dark Reader # theme dracula
I don't care about cookies
ClearURLs

View file

@ -1,4 +0,0 @@
{ pkgs, ... }:
{
home.packages = (with pkgs; [ floorp ]);
}

File diff suppressed because one or more lines are too long

View file

@ -1,69 +0,0 @@
{ pkgs, ... }:
{
programs.micro = {
enable = true;
settings = {
"colorscheme" = "catppuccin-mocha";
"*.nix" = {"tabsize" = 2;};
"*.ml" = {"tabsize" = 2;};
"tabstospaces" = true;
"tabsize" = 4;
};
};
xdg.configFile."micro/bindings.json".text = ''
{
"Ctrl-Up": "CursorUp,CursorUp,CursorUp,CursorUp,CursorUp",
"Ctrl-Down": "CursorDown,CursorDown,CursorDown,CursorDown,CursorDown",
"Ctrl-Backspace": "DeleteWordLeft",
"Ctrl-Delete": "DeleteWordRight",
"CtrlShiftUp": "ScrollUp,ScrollUp,ScrollUp,ScrollUp,ScrollUp",
"CtrlShiftDown": "ScrollDown,ScrollDown,ScrollDown,ScrollDown,ScrollDown"
}
'';
xdg.configFile."micro/colorschemes/catppuccin-mocha.micro".text = ''
color-link comment "#585B70"
color-link identifier "#89B4FA"
color-link identifier.class "#89B4FA"
color-link identifier.var "#89B4FA"
color-link constant "#FAB387"
color-link constant.number "#FAB387"
color-link constant.string "#A6E3A1"
color-link symbol "#F5C2E7"
color-link symbol.brackets "#F2CDCD"
color-link symbol.tag "#89B4FA"
color-link type "#89B4FA"
color-link type.keyword "#F9E2AF"
color-link special "#F5C2E7"
color-link statement "#CBA6F7"
color-link preproc "#F5C2E7"
color-link underlined "#89DCEB"
color-link error "bold #F38BA8"
color-link todo "bold #F9E2AF"
color-link diff-added "#A6E3A1"
color-link diff-modified "#F9E2AF"
color-link diff-deleted "#F38BA8"
color-link gutter-error "#F38BA8"
color-link gutter-warning "#F9E2AF"
color-link statusline "#CDD6F4,#181825"
color-link tabbar "#CDD6F4"
color-link indent-char "#45475A"
color-link line-number "#45475A"
color-link current-line-number "#B4BEFE"
color-link color-column "#313244"
color-link type.extended "default"
'';
}

View file

@ -1,13 +0,0 @@
{ pkgs, ... }:
{
home.packages = (with pkgs; [
(retroarch.override {
cores = with libretro; [
fceumm
gambatte
mgba
snes9x
];
})
]);
}

View file

@ -1,60 +0,0 @@
{ pkgs, lib, inputs, ... }: with lib;
let
extra-path = with pkgs; [
dotnetCorePackages.sdk_7_0
dotnetPackages.Nuget
mono
msbuild
];
extra-lib = with pkgs;[
# Personal development stuff
xorg.libX11
# Rider Unity debugging
xorg.libXcursor
xorg.libXrandr
libglvnd
];
_rider = pkgs.jetbrains.rider.overrideAttrs (attrs: {
postInstall = ''
# Wrap rider with extra tools and libraries
mv $out/bin/rider $out/bin/.rider-toolless
makeWrapper $out/bin/.rider-toolless $out/bin/rider \
--argv0 rider \
--prefix PATH : "${lib.makeBinPath extra-path}" \
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath extra-lib}"
# Making Unity Rider plugin work!
# The plugin expects the binary to be at /rider/bin/rider, with bundled files at /rider/
# It does this by going up one directory from the directory the binary is in
# We have rider binary at $out/bin/rider, so we need to link /rider/ to $out/
shopt -s extglob
ln -s $out/rider/!(bin) $out/
shopt -u extglob
'' + attrs.postInstall or "";
});
in
{
home.packages = with pkgs; [
_rider
dotnet-sdk_7
];
# Unity Rider plugin looks here for a .desktop file,
# which it uses to find the path to the rider binary.
home.file = { ".local/share/applications/jetbrains-rider.desktop".source =
let desktopFile = pkgs.makeDesktopItem {
name = "jetbrains-rider";
desktopName = "Rider";
exec = "\"${_rider}/bin/rider\"";
icon = "rider";
type = "Application";
# Don't show desktop icon in search or run launcher
extraConfig.NoDisplay = "true";
};
in "${desktopFile}/share/applications/jetbrains-rider.desktop";
};
}

View file

@ -1,41 +0,0 @@
{ lib, inputs, ... }:
{
programs.starship = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
enableNushellIntegration = true;
settings = {
# right_format = "$cmd_duration";
directory = {
format = "[ ](bold #89b4fa)[ $path ]($style)";
style = "bold #b4befe";
};
character = {
success_symbol = "[ ](bold #89b4fa)[ ](bold green)";
error_symbol = "[ ](bold #89b4fa)[ ](bold red)";
# error_symbol = "[ ](bold #89dceb)[ ✗](bold red)";
};
cmd_duration = {
format = "[]($style)[[󰔚 ](bg:#161821 fg:#d4c097 bold)$duration](bg:#161821 fg:#BBC3DF)[ ]($style)";
disabled = false;
style = "bg:none fg:#161821";
};
# directory.substitutions = {
# "~" = "󰋞";
# "Documents" = " ";
# "Downloads" = " ";
# "Music" = " ";
# "Pictures" = " ";
# };
palette = "catppuccin_mocha";
} // builtins.fromTOML (builtins.readFile "${inputs.catppuccin-starship}/palettes/mocha.toml");
};
}

View file

@ -1,4 +0,0 @@
{ pkgs, ... }:
{
home.packages = (with pkgs; [ unityhub ]);
}