mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 20:50:47 +03:00
15 lines
187 B
Nix
15 lines
187 B
Nix
{ inputs, ... }@flakeContext:
|
|
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
programs = {
|
|
btop.enable = true;
|
|
broot.enable = true;
|
|
bottom.enable = true;
|
|
fastfetch.enable = true;
|
|
};
|
|
}
|