format: formatting all files

This commit is contained in:
gwg313 2026-04-20 00:29:33 -04:00
parent ee565ff88f
commit fa791cd360
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
35 changed files with 333 additions and 263 deletions

View file

@ -1,5 +1,6 @@
# ✨ Magical shell history
{...}: {
{ ... }:
{
programs.atuin = {
enable = true;
flags = [

View file

@ -1,5 +1,6 @@
# A cat clone with syntax highlighting and Git integration.
{...}: {
{ ... }:
{
programs.bat = {
enable = true;
};

View file

@ -1,5 +1,6 @@
# An interactive treeview directory navigator
{...}: {
{ ... }:
{
programs.broot = {
enable = true;
enableZshIntegration = true;

View file

@ -1,4 +1,5 @@
{...}: {
{ ... }:
{
programs.btop = {
enable = true;
};

View file

@ -1,5 +1,6 @@
# A modern replacement for 'ls'.
{...}: {
{ ... }:
{
programs.eza = {
enable = true;
enableZshIntegration = true;

View file

@ -3,11 +3,13 @@
config,
lib,
...
}: let
}:
let
accent = "#" + config.lib.stylix.colors.base0D;
foreground = "#" + config.lib.stylix.colors.base05;
muted = "#" + config.lib.stylix.colors.base03;
in {
in
{
programs.fzf = {
enable = true;
enableZshIntegration = true;

View file

@ -2,7 +2,8 @@
pkgs,
lib,
...
}: {
}:
{
programs.ghostty = {
enable = true;
enableZshIntegration = true;
@ -13,7 +14,7 @@
auto-update = "off";
working-directory = "home";
window-inherit-working-directory = false; # avoid inheritance
keybinds = [];
keybinds = [ ];
# background-opacity = 0.8;
background-opacity = 1;
confirm-close-surface = false;

View file

@ -1,5 +1,6 @@
# A terminal-based Kubernetes CLI.
{...}: {
{ ... }:
{
programs.k9s = {
enable = true;
};

View file

@ -1,4 +1,5 @@
{pkgs}: {
{ pkgs }:
{
browser = "${pkgs.firefox}/bin/firefox";
terminal = "${pkgs.ghostty}/bin/ghostty";
fileManager = "${pkgs.thunar}/bin/thunar";

View file

@ -2,7 +2,8 @@
config,
pkgs,
...
}: {
}:
{
home.sessionVariables = {
XDG_ICON_DIR = "${pkgs.whitesur-icon-theme}/share/icons/WhiteSur";
GSETTINGS_SCHEMA_DIR = "${pkgs.gsettings-desktop-schemas}/share/gsettings-schemas/${pkgs.gsettings-desktop-schemas.name}/glib-2.0/schemas";
@ -52,18 +53,18 @@
layout = {
preset-column-widths = [
{proportion = 1. / 3.;}
{proportion = 1. / 2.;}
{proportion = 2. / 3.;}
{ proportion = 1. / 3.; }
{ proportion = 1. / 2.; }
{ proportion = 2. / 3.; }
];
default-column-width = {
proportion = 0.5;
};
preset-window-heights = [
{proportion = 1. / 3.;}
{proportion = 1. / 2.;}
{proportion = 2. / 3.;}
{ proportion = 1. / 3.; }
{ proportion = 1. / 2.; }
{ proportion = 2. / 3.; }
];
background-color = "#00000000";

View file

@ -1,8 +1,9 @@
# ✨ password manager
{pkgs, ...}: {
{ pkgs, ... }:
{
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [exts.pass-otp]);
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
};
home.packages = with pkgs; [

View file

@ -3,10 +3,12 @@
config,
lib,
...
}: let
}:
let
accent = "#${config.lib.stylix.colors.base0D}";
background-alt = "#${config.lib.stylix.colors.base01}";
in {
in
{
programs.starship = {
enable = true;
enableZshIntegration = true;