mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-07 12:44:00 -05:00
14 lines
278 B
Nix
14 lines
278 B
Nix
|
{pkgs, ...}: {
|
||
|
home = {
|
||
|
packages = with pkgs; [
|
||
|
btop
|
||
|
];
|
||
|
file = {
|
||
|
btop = {
|
||
|
recursive = true;
|
||
|
source = ../dotfiles/btop;
|
||
|
target = "./.config/btop";
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
}
|