This website requires JavaScript.
Explore
Help
Sign in
mirrors
/
home-manager
Watch
1
Star
0
Fork
You've already forked home-manager
0
mirror of
https://github.com/nix-community/home-manager.git
synced
2025-03-10 18:57:22 +00:00
Code
Activity
546949fea1
home-manager
/
tests
/
modules
/
programs
/
htop
/
empty-settings.nix
8 lines
108 B
Nix
Raw
Normal View
History
Unescape
Escape
htop: replace individual option with 'settings' (#1844) * htop: add some missing meters * htop: replace individual options with 'settings' Deprecate all options and introduce `settings` for setting htop configuration values in Nix configuration. Use `lib.htop` to provide `fields` and `modes` for easy access to htop's integer configuration. And `leftMeters` and `rightMeters` functions for building the separate `*_meters` and `*_meter_modes` attributes. * htop: add release-notes 21.05 entry * htop: improve deprecation warnings Move default configuration into `settings` and make deprecated options default to `null`. Print deprecation warnings for any option that is non-null -- i.e. only show warnings for explicitly specified deprecated options. * htop: make self code owner of module * release notes: fix invalid programs.htop xref
2021-05-18 23:36:08 +00:00
{
tests: rework derivation stubbing Instead of having to manually stub packages that should not be downloaded we instead automatically stub all packages (except a small list of whitelisted ones). Tests can re-introduce the real package by using the `realPkgs` module argument.
2025-01-31 21:24:47 +01:00
programs
.
htop
.
enable
=
true
;
htop: use dummy package in tests
2021-08-16 23:29:49 +02:00
tests: rework derivation stubbing Instead of having to manually stub packages that should not be downloaded we instead automatically stub all packages (except a small list of whitelisted ones). Tests can re-introduce the real package by using the `realPkgs` module argument.
2025-01-31 21:24:47 +01:00
nmt
.
script
=
''
assertPathNotExists
home-files/.config/htop
''
;
htop: replace individual option with 'settings' (#1844) * htop: add some missing meters * htop: replace individual options with 'settings' Deprecate all options and introduce `settings` for setting htop configuration values in Nix configuration. Use `lib.htop` to provide `fields` and `modes` for easy access to htop's integer configuration. And `leftMeters` and `rightMeters` functions for building the separate `*_meters` and `*_meter_modes` attributes. * htop: add release-notes 21.05 entry * htop: improve deprecation warnings Move default configuration into `settings` and make deprecated options default to `null`. Print deprecation warnings for any option that is non-null -- i.e. only show warnings for explicitly specified deprecated options. * htop: make self code owner of module * release notes: fix invalid programs.htop xref
2021-05-18 23:36:08 +00:00
}
Copy permalink