move btop to hosts/common
This commit is contained in:
parent
be97c833bc
commit
4c8ee9efd2
9 changed files with 24 additions and 39 deletions
|
@ -61,7 +61,6 @@ in {
|
|||
defaultBranch = "master";
|
||||
};
|
||||
zsh.enable = true;
|
||||
btop.enable = true;
|
||||
neovim = {
|
||||
enable = true;
|
||||
enableLsp = false;
|
||||
|
|
23
hosts/common/core/btop.nix
Normal file
23
hosts/common/core/btop.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
config,
|
||||
...
|
||||
}: let
|
||||
inherit (config.poz.other.system) username;
|
||||
in {
|
||||
home-manager.users.${username} = {
|
||||
programs.btop = {
|
||||
enable = true;
|
||||
settings = {
|
||||
theme_background = false;
|
||||
vim_keys = true;
|
||||
update_ms = 1000;
|
||||
cpu_single_graph = true;
|
||||
clock_format = "%X";
|
||||
use_fstab = true;
|
||||
io_mode = true;
|
||||
net_sync = true;
|
||||
log_level = "WARNING";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -2,6 +2,7 @@ _: {
|
|||
imports = [
|
||||
./agenix.nix
|
||||
./binary-caches.nix
|
||||
./btop.nix
|
||||
./dash.nix
|
||||
./dbus.nix
|
||||
./disable-nano.nix
|
||||
|
|
|
@ -121,7 +121,6 @@ in {
|
|||
};
|
||||
anyrun.enable = true;
|
||||
vesktop.enable = true;
|
||||
btop.enable = true;
|
||||
foot.enable = true;
|
||||
mpv.enable = true;
|
||||
neovim = {
|
||||
|
|
|
@ -36,7 +36,6 @@
|
|||
profiling = false;
|
||||
};
|
||||
anyrun.enable = true;
|
||||
btop.enable = true;
|
||||
foot.enable = true;
|
||||
mpv.enable = true;
|
||||
neovim.enable = true;
|
||||
|
|
|
@ -77,7 +77,6 @@ in {
|
|||
};
|
||||
anyrun.enable = true;
|
||||
vesktop.enable = true;
|
||||
btop.enable = true;
|
||||
foot.enable = true;
|
||||
mpv = {
|
||||
enable = true;
|
||||
|
|
|
@ -74,7 +74,6 @@ in {
|
|||
profiling = false;
|
||||
};
|
||||
anyrun.enable = true;
|
||||
btop.enable = true;
|
||||
foot.enable = true;
|
||||
mpv.enable = true;
|
||||
neovim = {
|
||||
|
|
|
@ -1,33 +0,0 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
cfg = config.poz.programs.btop;
|
||||
inherit (config.poz.other.system) username;
|
||||
|
||||
inherit (lib.modules) mkIf;
|
||||
inherit (lib.options) mkEnableOption;
|
||||
in {
|
||||
options.poz.programs.btop.enable = mkEnableOption "btop";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home-manager.users.${username} = {
|
||||
programs.btop = {
|
||||
enable = true;
|
||||
settings = {
|
||||
theme_background = false;
|
||||
vim_keys = true;
|
||||
update_ms = 1000;
|
||||
cpu_single_graph = true;
|
||||
clock_format = "%X";
|
||||
use_fstab = true;
|
||||
io_mode = true;
|
||||
net_sync = true;
|
||||
net_iface = "enp4s0";
|
||||
log_level = "WARNING";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,7 +1,6 @@
|
|||
_: {
|
||||
imports = [
|
||||
./neovim
|
||||
./btop.nix
|
||||
./helix.nix
|
||||
./newsboat.nix
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue