fix ssh motd; add nvd and nom
This commit is contained in:
parent
8ab3f6e2c8
commit
71ec638573
2 changed files with 8 additions and 3 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
flake.modules.nixos.nix =
|
flake.modules.nixos.nix =
|
||||||
{ inputs, ... }:
|
{ inputs, pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [ inputs.nixos-cli.nixosModules.nixos-cli ];
|
imports = [ inputs.nixos-cli.nixosModules.nixos-cli ];
|
||||||
|
|
||||||
|
|
@ -41,6 +41,11 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
nix-output-monitor
|
||||||
|
nvd
|
||||||
|
];
|
||||||
|
|
||||||
system.stateVersion = "22.11";
|
system.stateVersion = "22.11";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
};
|
};
|
||||||
programs = {
|
programs = {
|
||||||
bash.interactiveShellInit = ''
|
bash.interactiveShellInit = ''
|
||||||
if { [ -n "$SSH_CONNECTION" ] && [ -z "$IN_NIX_SHELL" ]; } || [ -z "$TMUX" ]; then
|
if [ -n "$SSH_CONNECTION" ] && [ -z "$IN_NIX_SHELL" ] && [ -z "$TMUX" ]; then
|
||||||
export TERM=xterm-256color
|
export TERM=xterm-256color
|
||||||
clear
|
clear
|
||||||
fastfetch
|
fastfetch
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
'';
|
'';
|
||||||
fish.interactiveShellInit = ''
|
fish.interactiveShellInit = ''
|
||||||
set fish_greeting
|
set fish_greeting
|
||||||
if set -q SSH_CONNECTION; and not set -q IN_NIX_SHELL; or not set -q TMUX
|
if set -q SSH_CONNECTION; and not set -q IN_NIX_SHELL; and not set -q TMUX
|
||||||
export TERM=xterm-256color
|
export TERM=xterm-256color
|
||||||
clear
|
clear
|
||||||
fastfetch
|
fastfetch
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue