ref: merged nixos and macOS configuration

This commit is contained in:
Léana 江 2023-12-30 20:45:31 +01:00 committed by Léana 江
parent 76632a9d1c
commit fcba199e19
21 changed files with 35 additions and 12 deletions

View file

@ -0,0 +1,36 @@
{ pkgs, unstable, ... }: {
programs.home-manager.enable = true;
imports = [ ./dev.nix ./fonts.nix ];
home = {
username = "leana";
homeDirectory = "/Users/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
# music
cmus
cmusfm
];
}