btop
This commit is contained in:
parent
0b0d6fc8ab
commit
8c19fb2d7e
@ -3,7 +3,7 @@
|
|||||||
export NIX_CONFIG="experimental-features = nix-command flakes"
|
export NIX_CONFIG="experimental-features = nix-command flakes"
|
||||||
|
|
||||||
function cmd_image() {
|
function cmd_image() {
|
||||||
local usage="Usage: $0 image --name <image-name>"
|
local usage="Usage: $0 image --name <image-name> [--remote]"
|
||||||
local name=""
|
local name=""
|
||||||
local remote=false
|
local remote=false
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
{ namespace, config, pkgs, ... }:
|
{ namespace, lib, config, pkgs, ... }:
|
||||||
let
|
let
|
||||||
|
inherit (lib.${namespace}) enabled;
|
||||||
|
|
||||||
cfg = config.${namespace}.user;
|
cfg = config.${namespace}.user;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
@ -25,6 +27,10 @@ in
|
|||||||
nameservers = [ "10.0.50.254" ];
|
nameservers = [ "10.0.50.254" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
terminal = {
|
||||||
|
btop = enabled;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
@ -53,7 +59,6 @@ in
|
|||||||
|
|
||||||
# System Packages
|
# System Packages
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
htop
|
|
||||||
tmux
|
tmux
|
||||||
vim
|
vim
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user