new stuff

This commit is contained in:
2025-08-30 10:52:53 -06:00
parent 6580b0aff8
commit 1dae2173af
6 changed files with 34 additions and 5 deletions

View File

@@ -29,6 +29,7 @@
nim-2_0
nimlangserver
fm
felix
kdlfmt
swaybg
];
@@ -51,13 +52,15 @@
};
# wayland.windowManager.river.enable = true;
imports = [
../packages/fish/fish.nix
../packages/alacritty/alacritty.nix
../packages/helix/helix.nix
../packages/direnv/direnv.nix
../packages/fish/fish.nix
../packages/fuzzel/fuzzel.nix
../packages/git/git.nix
../packages/helix/helix.nix
../packages/starship/starship.nix
../packages/direnv/direnv.nix
../packages/thunderbird/thunderbird.nix
../packages/zellij/zellij.nix
../packages/zoxide/zoxide.nix
];
}

View File

@@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
programs.autujump = {
enable = true;
enableFishIntegration = true;
};
}

View File

@@ -14,8 +14,9 @@
settings = {
spawn = [
#set wallpaper
"swaybg --image ~/Downloads/wp.jpg"
# "swaybg --image ~/Downloads/wp.jpg"
# set gaps on wideriver
"~/login-wm-setup.sh"
"~/login-wm-setup-2.sh"
];
output-layout = "wideriver";

View File

@@ -2,7 +2,7 @@ add_newline = true
format = """
[](#D52D00)\
[](#D52D00)\
$username\
[](bg:#EF7627 fg:#D52D00)\
$directory\
@@ -28,6 +28,7 @@ $docker_context\
$time\
[ ](fg:#A30262)\
\n
[█](fg:#D52D00)
"""
# Disable the blank line at the start of the prompt

View File

@@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
programs.thunderbird = {
enable = true;
};
}

View File

@@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
programs.zoxide = {
enable = true;
enableFishIntegration = true;
};
}