Common/programs/btop: enable using home manager
This commit is contained in:
parent
1443e62ccd
commit
08df06dc26
2 changed files with 12 additions and 1 deletions
11
roles/common/programs/btop.nix
Normal file
11
roles/common/programs/btop.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{ ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home-manager = {
|
||||||
|
users.toast = {
|
||||||
|
programs.btop = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -12,6 +12,7 @@
|
||||||
./git.nix
|
./git.nix
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./bat.nix
|
./bat.nix
|
||||||
|
./btop.nix
|
||||||
];
|
];
|
||||||
# Some programs dont have a programs.*.enable option, so I install their package here
|
# Some programs dont have a programs.*.enable option, so I install their package here
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
@ -23,7 +24,6 @@
|
||||||
ncdu
|
ncdu
|
||||||
tree
|
tree
|
||||||
btdu
|
btdu
|
||||||
btop
|
|
||||||
iperf3
|
iperf3
|
||||||
restic
|
restic
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue