add(home-manager): earth2077.fr

This commit is contained in:
Léana 江 2023-12-30 11:56:00 +00:00 committed by Léana 江
parent 2e30ef789b
commit ab732b02b6
3 changed files with 98 additions and 2 deletions

View file

@ -0,0 +1,32 @@
{ pkgs, unstable, ... }: {
programs.home-manager.enable = true;
imports = [ ./dev.nix ];
home = {
username = "leana";
homeDirectory = "/home/leana";
stateVersion = "23.11";
};
home.packages = with pkgs; [
# shell and script dependencies
fish
figlet
gnused
starship
stow
ripgrep
fd
fzf
vivid
# utils
btop
tree
rsync
tldr
unstable.typst
];
}