starting zellij conf

This commit is contained in:
autumn
2025-08-26 13:34:14 -06:00
parent e4e93d4c65
commit f25dbe159f
6 changed files with 88 additions and 63 deletions

View File

@@ -1,55 +1,54 @@
{ config, pkgs, ... }:
{
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "ruby";
home.homeDirectory = "/home/ruby";
home.stateVersion = "25.05"; # Please read the comment before changing.
programs.home-manager.enable = true;
nixpkgs.config = {
alowUnfree = true;
allowUnfreePredicate = (_: true);
};
home.packages = with pkgs; [
neofetch
vscodium-fhs
nerd-fonts.hack
vesktop
obsidian
ccls
docker-language-server
nil
ty
rustc
rustup
htop
gnumake
python314Full
eza
gleam
ruff
ruby
vscode-extensions.castwide.solargraph
nim-2_0
nimlangserver
];
programs.htop.enable = true;
programs.starship.enable = true;
home = {
username = "ruby";
homeDirectory = "/home/ruby";
stateVersion = "25.11";
packages = with pkgs; [
neofetch
vscodium-fhs
nerd-fonts.hack
vesktop
obsidian
ccls
docker-language-server
nil
ty
rustc
rustup
htop
gnumake
python314Full
eza
gleam
ruff
ruby
vscode-extensions.castwide.solargraph
rubyPackages_3_4.solargraph
nim-2_0
nimlangserver
fm
zellij
kdlfmt
];
sessionVariables = {
EDITOR = "helix";
TERM = "alacritty";
};
file = {
};
};
programs = {
home-manager.enable = true;
htop.enable = true;
};
nixpkgs.config = {
alowUnfree = true;
allowUnfreePredicate = (_: true);
};
wayland.windowManager.river.enable = true;
home.sessionVariables = {
EDITOR = "helix";
TERM = "alacritty";
};
imports = [
../packages/fish/fish.nix
../packages/river/river.nix
@@ -59,6 +58,5 @@
../packages/waybar/waybar.nix
../packages/git/git.nix
../packages/starship/starship.nix
];
];
}