rename home dir

This commit is contained in:
2025-09-19 15:07:40 +00:00
parent d412f1ac6c
commit 2ab49fbfc8
30 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
{config, pkgs, ...}:
{
home.packages = with pkgs; [
ccls
docker-language-server
ember-cli
ember-language-server
fish-lsp
gcc
libgcc
gleam
kdlfmt
lessc
nil
nim-2_0
nimlangserver
odin
ols
# python314
python313
ruby
rubyPackages_3_4.solargraph
ruff
rustc
rustup
superhtml
ty
vscode-langservers-extracted
vala
vala-language-server
yaml-language-server
];
}

52
home/autumn/home.nix Normal file
View File

@@ -0,0 +1,52 @@
{ config, pkgs, ... }:
{
home = {
username = "autumn";
homeDirectory = "/home/autumn";
stateVersion = "25.11";
packages = with pkgs; [
eza
fm
felix
gnumake
htop
nerd-fonts.hack
neofetch
uv
wev
];
sessionVariables = {
EDITOR = "helix";
TERM = "alacritty";
};
};
programs = {
home-manager.enable = true;
htop.enable = true;
pls = {
enable = true;
enableFishIntegration = true;
};
};
nixpkgs.config = {
alowUnfree = true;
allowUnfreePredicate = (_: true);
};
# wayland.windowManager.river.enable = true;
imports = [
# packages with further configuration
../packages/alacritty/alacritty.nix
../packages/crawl/crawl.nix
../packages/direnv/direnv.nix
../packages/git/git.nix
../packages/helix/helix.nix
../packages/starship/starship.nix
../packages/thunderbird/thunderbird.nix
../packages/zoxide/zoxide.nix
# ../packages/zsh/zsh.nix
# package bundles
./bundles/langs.nix
];
}

View File

@@ -0,0 +1,11 @@
{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

@@ -0,0 +1,23 @@
{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 = [
../../packages/fish/fish.nix
../../packages/river/river.nix
../../packages/waybar/waybar.nix
../../packages/twmn/twmn.nix
../../packages/fuzzel/fuzzel.nix
];
}

View File

@@ -0,0 +1,67 @@
{ config, pkgs, ... }:
{
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "autumn";
home.homeDirectory = "/home/autumn";
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;
programs.bash.initExtra = "
fish
";
wayland.windowManager.river.enable = true;
home.sessionVariables = {
EDITOR = "helix";
TERM = "alacritty";
};
imports = [
../packages/fish/fish.nix
../packages/river/river.nix
../packages/alacritty/alacritty.nix
../packages/helix/helix.nix
../packages/fuzzel/fuzzel.nix
../packages/waybar/waybar.nix
../packages/git/git.nix
../packages/starship/starship.nix
];
}