Compare commits

...

2 Commits

Author SHA1 Message Date
d412f1ac6c sync 2025-09-19 07:57:03 +00:00
f6d356c066 wsl setups 2025-09-19 02:07:49 +00:00
8 changed files with 78 additions and 57 deletions

View File

@@ -62,6 +62,7 @@
pkgs = pkgs; pkgs = pkgs;
modules = [ modules = [
./home-manager/autumn/home.nix ./home-manager/autumn/home.nix
./home-manager/autumn/sysconfs/wsl-hive.nix
]; ];
}; };
}; };

View File

@@ -6,7 +6,6 @@
homeDirectory = "/home/autumn"; homeDirectory = "/home/autumn";
stateVersion = "25.11"; stateVersion = "25.11";
packages = with pkgs; [ packages = with pkgs; [
avizo
eza eza
fm fm
felix felix
@@ -14,11 +13,6 @@
htop htop
nerd-fonts.hack nerd-fonts.hack
neofetch neofetch
obsidian
swaybg
tiramisu
vscodium-fhs
vesktop
uv uv
wev wev
]; ];
@@ -26,19 +20,14 @@
EDITOR = "helix"; EDITOR = "helix";
TERM = "alacritty"; TERM = "alacritty";
}; };
file = {
"config.ini" = {
enable = true;
source = ../packages/avizo/config.ini;
target = ".config/avizo/config.ini";
};
};
}; };
programs = { programs = {
home-manager.enable = true; home-manager.enable = true;
htop.enable = true; htop.enable = true;
bash.initExtra= ''fish''; pls = {
pls = {enable = true;enableFishIntegration = true;}; enable = true;
enableFishIntegration = true;
};
}; };
nixpkgs.config = { nixpkgs.config = {
alowUnfree = true; alowUnfree = true;
@@ -51,14 +40,10 @@
../packages/alacritty/alacritty.nix ../packages/alacritty/alacritty.nix
../packages/crawl/crawl.nix ../packages/crawl/crawl.nix
../packages/direnv/direnv.nix ../packages/direnv/direnv.nix
../packages/fish/fish.nix
../packages/fuzzel/fuzzel.nix
../packages/git/git.nix ../packages/git/git.nix
../packages/helix/helix.nix ../packages/helix/helix.nix
../packages/starship/starship.nix ../packages/starship/starship.nix
../packages/thunderbird/thunderbird.nix ../packages/thunderbird/thunderbird.nix
../packages/twmn/twmn.nix
../packages/zellij/zellij.nix
../packages/zoxide/zoxide.nix ../packages/zoxide/zoxide.nix
# ../packages/zsh/zsh.nix # ../packages/zsh/zsh.nix
# package bundles # package bundles

View File

@@ -1,3 +1,11 @@
{config, pkgs, ...}: {config, pkgs, ...}:
{ {
home.packags = with pkgs; [
obsidian
vscodium-fhs
vesktop
];
imports = [
../../packages/fish/fish.nix
];
} }

View File

@@ -0,0 +1,9 @@
{config, pkgs, ...}:
{
programs.bash.initExtra= ''zsh'';
imports = [
../../packages/zsh/zsh.nix
../../packages/zellij/zellij.nix
];
}

View File

@@ -1,7 +1,23 @@
{config, pkgs, ...}: {config, pkgs, ...}:
{ {
home.packags = with pkgs; [
obsidian
vscodium-fhs
vesktop
];
programs.bash.initExtra= ''fish'';
home.file = {
"config.ini" = {
enable = true;
source = ../packages/avizo/config.ini;
target = ".config/avizo/config.ini";
};
};
imports = [ imports = [
../../packages/fish/fish.nix
../../packages/river/river.nix ../../packages/river/river.nix
../../packages/waybar/waybar.nix ../../packages/waybar/waybar.nix
../../packages/twmn/twmn.nix
../../packages/fuzzel/fuzzel.nix
]; ];
} }

View File

@@ -3,7 +3,7 @@
{ {
programs.zellij = { programs.zellij = {
enable = true; enable = true;
# enableFishIntegration = true; enableZshIntegration = true;
# exitShellOnExit = true; # exitShellOnExit = true;
settings = { settings = {
themes = { themes = {

View File

@@ -6,18 +6,21 @@
oh-my-zsh oh-my-zsh
]; ];
programs.zsh = { programs ={
zsh = {
enable = true; enable = true;
antidote = { antidote = {
enable = true; enable = true;
# plugins = [ plugins = [
"zsh-users/zsh-autosuggestions"
"zsh-users/zsh-syntax-highlighting"
# "colored-man-pages" # "colored-man-pages"
# "colorize" # "colorize"
# "cp" # "cp"
# "history" # "history"
# "ssh-agent" # "ssh-agent"
# "zoxide" # "zoxide"
# ]; ];
useFriendlyNames = true; useFriendlyNames = true;
}; };
autosuggestion = { autosuggestion = {
@@ -30,7 +33,20 @@
"pls" = "pls -d typ -d perm -d user -d group -d size -d mtime -d git"; "pls" = "pls -d typ -d perm -d user -d group -d size -d mtime -d git";
"z" = "zoxide"; "z" = "zoxide";
}; };
oh-my-zsh = {
enable = true;
plugins = [
"git"
"sudo"
"colored-man-pages"
"colorize"
"cp"
"zoxide"
"ssh-agent"
"command-not-found"
];
};
};
}; };
} }

View File

@@ -92,20 +92,6 @@
}; };
nix.settings.experimental-features = ["nix-command" "flakes"]; nix.settings.experimental-features = ["nix-command" "flakes"];
# nix.settings.download-buffer-size = 5242880000;
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
# List services that you want to enable:
# Enable the OpenSSH daemon.
system.stateVersion = "25.05"; system.stateVersion = "25.05";