Alright this ain't finished cause of the home stuff but I don't wanna lose what I've done. Impermanence, disko, lots of changes. TODO: add modularity to home.

This commit is contained in:
Jimbo 2024-11-02 17:19:40 -04:00
parent 7a3f60038b
commit 15ab10152b
109 changed files with 766 additions and 749 deletions

View file

@ -1,11 +1,11 @@
{ pkgs, ... }:
{
home = {
packages = with pkgs; [
easyeffects
];
file = {
".config/easyeffects/output/JimHeadphones.json".source = ./JimHeadphones.json;
};
services.easyeffects = {
enable = true;
preset = "headphones";
};
home.file = {
".config/easyeffects/output/headphones.json".source = ./headphones.json;
};
}

View file

@ -312,7 +312,7 @@ in {
];
}
];
definedAliases = ["@g"];
definedAliases = [ "@g" ];
};
"NixPKGs" = {
urls = [
@ -331,7 +331,7 @@ in {
}
];
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
definedAliases = ["@pkgs"];
definedAliases = [ "@pkgs" ];
};
};
};
@ -348,6 +348,7 @@ in {
"privacy.userContext.newTabContainerOnLeftClick.enabled" = true;
"privacy.clearOnShutdown.history" = false;
"privacy.clearOnShutdown.cookies" = false;
"privacy.clearOnShutdown_v2.cookiesAndStorage" = false;
"browser.toolbars.bookmarks.visibility" = "never";
"media.hardware-video-decoding.force-enabled" = true;
"svg.context-properties.content.enabled" = true;
@ -400,7 +401,7 @@ in {
icon = "fingerprint";
id = 200;
};
Seneca = {
Work = {
color = "red";
icon = "briefcase";
id = 201;

View file

@ -14,7 +14,12 @@
defaultTimeout = 6000;
font = "${config.look.fonts.main} 12";
anchor = "bottom-right";
extraConfig = "on-button-right=dismiss-all\nouter-margin=10\n[mode=do-not-disturb]\ninvisible=1";
extraConfig = ''
on-button-right=dismiss-all
outer-margin=10
[mode=do-not-disturb]
invisible=1
'';
};
home.packages = let
@ -36,7 +41,5 @@
makoctl mode -a do-not-disturb
fi
'';
in with pkgs; [
makoToggle
];
in with pkgs; [ makoToggle ];
}

View file

@ -1,10 +1,9 @@
{ pkgs, ... }:
{
home = {
packages = with pkgs; [
mangohud
];
packages = with pkgs; [ mangohud ];
file = {
# I know options exist for this, but the order is not respected.
".config/MangoHud/MangoHud.conf".text = ''
table_columns=2
frametime=0
@ -12,7 +11,6 @@
font_scale=0.80
background_alpha=0.25
# Set the loads and such
exec=echo $(echo $XDG_CURRENT_DESKTOP | sed 's/./\U&/') on $(cat /etc/os-release | grep PRETTY_NAME | cut -d '"' -f 2)
fps
fps_color_change

View file

@ -1,7 +1,12 @@
{ ... }:
{ pkgs, ... }:
{
programs.mpv = {
enable = true;
scripts = with pkgs.mpvScripts; [
mpris
sponsorblock
thumbnail
];
config = {
volume = 55;
loop-playlist = "inf";