mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
14 lines
221 B
Nix
14 lines
221 B
Nix
{ config, pkgs, ... }: {
|
|
|
|
home-manager.users.${config.user} = {
|
|
|
|
home.packages = with pkgs; [
|
|
glow # Markdown previews
|
|
skate # Key-value store
|
|
charm # Manage account and filesystem
|
|
];
|
|
|
|
};
|
|
|
|
}
|