add(nix): pi4

This commit is contained in:
Léana 江 2024-01-02 21:32:20 +01:00 committed by Léana 江
parent 4856534f29
commit 844c0d655e
3 changed files with 93 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
gcc
# utils
btop
tree
rsync
tldr
];
}