Skip to content

Commit

Permalink
feat: added home-nix
Browse files Browse the repository at this point in the history
  • Loading branch information
fbosch committed Jun 21, 2024
1 parent b3e2d07 commit 61b812e
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 4 deletions.
1 change: 1 addition & 0 deletions .config/environment.d/10-home-manager.conf
40 changes: 36 additions & 4 deletions .config/home-manager/home.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,40 @@
{ pkgs, ... }: {
home.username = "fbb";
home.homeDirectory = "/Users/fbb";
home.homeDirectory = "/home/fbb";
programs.home-manager.enable = true;
home.packages = {
pkgs.stow
}
home.stateVersion = "24.11";
home.packages = with pkgs; [
# system
stow
cmake
coreutils

# files
fzf
lf
bat
fd
eza
ripgrep
zoxide
cloc
grc

# terminal
starship
fish
wezterm
btop

# development
git
lazygit
delta
neovim
bun
nodejs
fnm
jq
rustc
];
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.DS_Store
lazy-lock.json
nix-fbb/result
.config/lazygit/state.yml
.config/fish/private.fish
.config/fish/fish_variables
Expand Down

0 comments on commit 61b812e

Please sign in to comment.