unfucking users again :3

This commit is contained in:
autumn
2025-08-27 10:47:56 -06:00
parent f25dbe159f
commit 44f5469b49
17 changed files with 126 additions and 183 deletions

View File

@@ -2,10 +2,6 @@
{
home.packages = with pkgs; [
alacritty
];
programs.alacritty = {
enable = true;
settings = {

View File

@@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
];
programs. = {
enable = true;
};
}

View File

@@ -3,7 +3,6 @@
{
home.packages = with pkgs; [
fish
oh-my-fish
];

View File

@@ -2,9 +2,6 @@
{
#home.packages = with pkgs; [
# fuzzel
#];
programs.fuzzel = {
enable = true;

View File

@@ -1,16 +1,9 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
git
];
programs.git = {
enable = true;
userEmail = "autumnal,musing@gmail.com";
userEmail = "autumnal.musing@gmail.com";
userName = "autumn";
};
}

View File

@@ -1,15 +1,8 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
helix
];
programs.helix = {
enable = true;
settings = {theme = "everforest_dark";};
};
}

View File

@@ -4,7 +4,6 @@
home.packages = with pkgs; [
wideriver
river
];

View File

@@ -1,19 +1,9 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs;[
starship
];
xdg.configFile."starship.toml".source = ./starship.toml;
programs.starship = {
enable = true;
enableFishIntegration = true;
};
}

View File

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

View File

@@ -1,11 +1,6 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
waybar
];
programs.waybar = {
enable = true;
systemd.enable = true;

View File

@@ -1,19 +1,28 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
zellij
];
programs.zellij = {
enable = true;
enableFishIntegration = true;
# enableFishIntegration = true;
exitShellOnExit = true;
settings = {
theme = "everforest-dark";
themes = {
custom = {
bg = "#2b3339";
fg = "#d3c6aa";
black = "#2b3339";
red = "#e67e80";
green = "#a7c080";
yellow = "#dbbc7f";
blue = "#7fbbb3";
magenta = "#d699b6";
cyan = "#83c092";
white = "#d3c6aa";
orange = "#FF9E64";
};
};
theme = "custom";
advanced_mouse_actions = false;
};
};
}