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";
|
defaultBranch = "master";
|
||||||
};
|
};
|
||||||
zsh.enable = true;
|
zsh.enable = true;
|
||||||
btop.enable = true;
|
|
||||||
neovim = {
|
neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableLsp = false;
|
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 = [
|
imports = [
|
||||||
./agenix.nix
|
./agenix.nix
|
||||||
./binary-caches.nix
|
./binary-caches.nix
|
||||||
|
./btop.nix
|
||||||
./dash.nix
|
./dash.nix
|
||||||
./dbus.nix
|
./dbus.nix
|
||||||
./disable-nano.nix
|
./disable-nano.nix
|
||||||
|
|
|
@ -121,7 +121,6 @@ in {
|
||||||
};
|
};
|
||||||
anyrun.enable = true;
|
anyrun.enable = true;
|
||||||
vesktop.enable = true;
|
vesktop.enable = true;
|
||||||
btop.enable = true;
|
|
||||||
foot.enable = true;
|
foot.enable = true;
|
||||||
mpv.enable = true;
|
mpv.enable = true;
|
||||||
neovim = {
|
neovim = {
|
||||||
|
|
|
@ -36,7 +36,6 @@
|
||||||
profiling = false;
|
profiling = false;
|
||||||
};
|
};
|
||||||
anyrun.enable = true;
|
anyrun.enable = true;
|
||||||
btop.enable = true;
|
|
||||||
foot.enable = true;
|
foot.enable = true;
|
||||||
mpv.enable = true;
|
mpv.enable = true;
|
||||||
neovim.enable = true;
|
neovim.enable = true;
|
||||||
|
|
|
@ -77,7 +77,6 @@ in {
|
||||||
};
|
};
|
||||||
anyrun.enable = true;
|
anyrun.enable = true;
|
||||||
vesktop.enable = true;
|
vesktop.enable = true;
|
||||||
btop.enable = true;
|
|
||||||
foot.enable = true;
|
foot.enable = true;
|
||||||
mpv = {
|
mpv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -74,7 +74,6 @@ in {
|
||||||
profiling = false;
|
profiling = false;
|
||||||
};
|
};
|
||||||
anyrun.enable = true;
|
anyrun.enable = true;
|
||||||
btop.enable = true;
|
|
||||||
foot.enable = true;
|
foot.enable = true;
|
||||||
mpv.enable = true;
|
mpv.enable = true;
|
||||||
neovim = {
|
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 = [
|
imports = [
|
||||||
./neovim
|
./neovim
|
||||||
./btop.nix
|
|
||||||
./helix.nix
|
./helix.nix
|
||||||
./newsboat.nix
|
./newsboat.nix
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue