31 lines
No EOL
508 B
Nix
31 lines
No EOL
508 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.username = "fossil";
|
|
home.homeDirectory = "/home/fossil";
|
|
|
|
home.packages = with pkgs; [
|
|
kitty
|
|
firefox
|
|
thunderbird
|
|
cmus
|
|
zellij
|
|
|
|
zsh
|
|
zoxide
|
|
zsh-vi-mode
|
|
zsh-autopair
|
|
zsh-nix-shell
|
|
oh-my-zsh
|
|
zsh-completions
|
|
zsh-powerlevel10k
|
|
zsh-autocomplete
|
|
zsh-fast-syntax-highlighting
|
|
zsh-history-search-multi-word
|
|
nix-zsh-completions
|
|
];
|
|
|
|
home.stateVersion = "22.05";
|
|
|
|
programs.home-manager.enable = true;
|
|
} |