Files
nix/modules/software/utilities/fetch.nix
T
2026-08-25 01:30:59 -05:00

32 lines
524 B
Nix

{ inputs, ... }: {
den.aspects.fetch = {
homeManager = { ... }: {
imports = [ inputs.fetch.homeManagerModules.default ];
programs.fetch = {
enable = true;
info = [
"os"
"kernel"
"uptime"
"packages"
"shell"
"display"
"wm"
"cpu"
"gpu"
"memory"
"swap"
"disk"
"ip"
"battery"
];
speed = 1.0;
spin = "xy";
};
};
};
}