sync repo

This commit is contained in:
notkaori
2025-08-20 09:38:25 -06:00
parent 51f2ce340f
commit 1f3b39008e
17 changed files with 916 additions and 0 deletions

View File

@@ -0,0 +1,93 @@
{ config, lib, pkgs, ... }:
{
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "autumn";
home.homeDirectory = "/home/autumn";
programs.home-manager.enable = true;
home.stateVersion = "25.05"; # Please read the comment before changing.
nixpkgs.config = {
alowUnfree = true;
allowUnfreePredicate = (_: true);
};
home.packages = [
pkgs.neofetch
pkgs.vscodium-fhs
pkgs.nerd-fonts.hack
pkgs.vesktop
pkgs.obsidian
pkgs.ccls
pkgs.docker-language-server
pkgs.nil
pkgs.ty
pkgs.rustc
pkgs.rustup
pkgs.htop
pkgs.starship
pkgs.gnumake
pkgs.python314Full
pkgs.eza
pkgs.gleam
pkgs.ruff
pkgs.ruby
pkgs.vscode-extensions.castwide.solargraph
pkgs.wideriver
];
programs.htop.enable = true;
programs.starship.enable = true;
programs.bash.initExtra = "fish";
wayland.windowManager.river.enable = true;
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
home.file = {
# # symlink to the Nix store copy.
# ".screenrc".source = dotfiles/screenrc;
# # You can also set the file content immediately.
# ".gradle/gradle.properties".text = ''
# org.gradle.console=verbose
# org.gradle.daemon.idletimeout=3600000
# '';
};
# Home Manager can also manage your environment variables through
# 'home.sessionVariables'. These will be explicitly sourced when using a
# shell provided by Home Manager. If you don't want to manage your shell
# through Home Manager then you have to manually source 'hm-session-vars.sh'
# located at either
#
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/autumn/etc/profile.d/hm-session-vars.sh
#
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
];
}