Link: https://github.com/nix-community/stylix/pull/1995 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
11 lines
190 B
Nix
11 lines
190 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
stylix.testbed.ui.command = {
|
|
text = "gdu";
|
|
useTerminal = true;
|
|
};
|
|
|
|
home-manager.sharedModules = lib.singleton {
|
|
home.packages = [ pkgs.gdu ];
|
|
};
|
|
}
|