formatted everything

This commit is contained in:
Tyler Kelley 2024-05-14 19:46:02 -05:00
parent 3574823bac
commit eae1ac1be2
3 changed files with 119 additions and 107 deletions

View File

@ -2,110 +2,111 @@
let let
palette = config.colorScheme.palette; palette = config.colorScheme.palette;
in { in
{
home.file.".config/swaync/config.json".text = '' home.file.".config/swaync/config.json".text = ''
{ {
"$schema": "/etc/xdg/swaync/configSchema.json", "$schema": "/etc/xdg/swaync/configSchema.json",
"positionX": "right", "positionX": "right",
"positionY": "top", "positionY": "top",
"control-center-margin-top": 10, "control-center-margin-top": 10,
"control-center-margin-bottom": 10, "control-center-margin-bottom": 10,
"control-center-margin-right": 10, "control-center-margin-right": 10,
"control-center-margin-left": 10, "control-center-margin-left": 10,
"notification-icon-size": 64, "notification-icon-size": 64,
"notification-body-image-height": 100, "notification-body-image-height": 100,
"notification-body-image-width": 200, "notification-body-image-width": 200,
"timeout": 10, "timeout": 10,
"timeout-low": 5, "timeout-low": 5,
"timeout-critical": 0, "timeout-critical": 0,
"fit-to-screen": false, "fit-to-screen": false,
"control-center-width": 500, "control-center-width": 500,
"control-center-height": 1025, "control-center-height": 1025,
"notification-window-width": 500, "notification-window-width": 500,
"keyboard-shortcuts": true, "keyboard-shortcuts": true,
"image-visibility": "when-available", "image-visibility": "when-available",
"transition-time": 200, "transition-time": 200,
"hide-on-clear": false, "hide-on-clear": false,
"hide-on-action": true, "hide-on-action": true,
"script-fail-notify": true, "script-fail-notify": true,
"widgets": [ "widgets": [
"title", "title",
"buttons-grid", "buttons-grid",
"mpris", "mpris",
"volume", "volume",
"backlight", "backlight",
"dnd", "dnd",
"notifications" "notifications"
], ],
"widget-config": { "widget-config": {
"title": { "title": {
"text": "Notification Center", "text": "Notification Center",
"clear-all-button": true, "clear-all-button": true,
"button-text": "󰆴 Clear All" "button-text": "󰆴 Clear All"
}, },
"dnd": { "dnd": {
"text": "Do Not Disturb" "text": "Do Not Disturb"
}, },
"label": { "label": {
"max-lines": 1, "max-lines": 1,
"text": "Notification Center" "text": "Notification Center"
}, },
"mpris": { "mpris": {
"image-size": 96, "image-size": 96,
"image-radius": 7 "image-radius": 7
}, },
"volume": { "volume": {
"label": "󰕾" "label": "󰕾"
}, },
"backlight": { "backlight": {
"label": "󰃟" "label": "󰃟"
}, },
"buttons-grid": { "buttons-grid": {
"actions": [ "actions": [
{ {
"label": "", "label": "",
"command": "systemctl poweroff" "command": "systemctl poweroff"
}, },
{ {
"label": "🔄", "label": "🔄",
"command": "systemctl reboot" "command": "systemctl reboot"
}, },
{ {
"label": "🚪", "label": "🚪",
"command": "hyprctl dispatch exit" "command": "hyprctl dispatch exit"
}, },
{ {
"label": "🗃", "label": "🗃",
"command": "thunar" "command": "thunar"
}, },
{ {
"label": "📸", "label": "📸",
"command": "gimp" "command": "gimp"
}, },
{ {
"label": "📣", "label": "📣",
"command": "pactl set-sink-mute @DEFAULT_SINK@ toggle" "command": "pactl set-sink-mute @DEFAULT_SINK@ toggle"
}, },
{ {
"label": "🎙", "label": "🎙",
"command": "pactl set-source-mute @DEFAULT_SOURCE@ toggle" "command": "pactl set-source-mute @DEFAULT_SOURCE@ toggle"
}, },
{ {
"label": "🎮", "label": "🎮",
"command": "steam" "command": "steam"
}, },
{ {
"label": "🌏", "label": "🌏",
"command": "firefox" "command": "firefox"
}, },
{ {
"label": "📹", "label": "📹",
"command": "obs" "command": "obs"
} }
] ]
} }
}
} }
}
''; '';
home.file.".config/swaync/style.css".text = '' home.file.".config/swaync/style.css".text = ''

View File

@ -117,17 +117,17 @@ in
}; };
theme = { theme = {
name = "${config.colorScheme.slug}"; name = "${config.colorScheme.slug}";
package = gtkThemeFromScheme {scheme = config.colorScheme;}; package = gtkThemeFromScheme { scheme = config.colorScheme; };
}; };
iconTheme = { iconTheme = {
name = "Papirus-Dark"; name = "Papirus-Dark";
package = pkgs.papirus-icon-theme; package = pkgs.papirus-icon-theme;
}; };
gtk3.extraConfig = { gtk3.extraConfig = {
gtk-application-prefer-dark-theme=1; gtk-application-prefer-dark-theme = 1;
}; };
gtk4.extraConfig = { gtk4.extraConfig = {
gtk-application-prefer-dark-theme=1; gtk-application-prefer-dark-theme = 1;
}; };
}; };
@ -136,8 +136,8 @@ in
enable = true; enable = true;
platformTheme = "gtk"; platformTheme = "gtk";
style = { style = {
name = "adwaita-dark"; name = "adwaita-dark";
package = pkgs.adwaita-qt; package = pkgs.adwaita-qt;
}; };
}; };
@ -168,6 +168,16 @@ in
programs = { programs = {
gh.enable = true; gh.enable = true;
neovim = {
enable = true;
defaultEditor = true;
vimAlias = true;
vimdiffAlias = true;
plugins = with pkgs.vimPlugins; [
nvim-lspconfig
nvim-treesitter.withAllGrammars
];
};
kitty = { kitty = {
enable = true; enable = true;
package = pkgs.kitty; package = pkgs.kitty;

View File

@ -27,6 +27,7 @@ in
packages = with pkgs; [ packages = with pkgs; [
obs-studio obs-studio
zeroad zeroad
blender-hip
]; ];
}; };
# "newuser" = { # "newuser" = {