a0869759be
GitOrigin-RevId: ac319fd3149b23a3ad8ee24cb2def6e67acf194c
13 lines
178 B
Nix
13 lines
178 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.htop.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/htop/htoprc
|
|
'';
|
|
};
|
|
}
|