modules/community-builder: add motd

This commit is contained in:
zowoq 2024-09-24 10:31:46 +10:00
parent edeaf0e3a5
commit 49f6540544
3 changed files with 47 additions and 21 deletions
modules
darwin/community-builder
nixos/community-builder
shared

View file

@ -11,6 +11,8 @@
./users.nix ./users.nix
]; ];
environment.etc.motd.text = config.nixCommunity.motd;
environment.systemPackages = [ environment.systemPackages = [
pkgs.vim pkgs.vim
]; ];

View file

@ -1,4 +1,9 @@
{ inputs, pkgs, ... }: {
config,
inputs,
pkgs,
...
}:
{ {
imports = [ imports = [
"${inputs.self}/modules/shared/community-builder.nix" "${inputs.self}/modules/shared/community-builder.nix"
@ -6,6 +11,8 @@
./users.nix ./users.nix
]; ];
users.motd = config.nixCommunity.motd;
environment.systemPackages = [ environment.systemPackages = [
# terminfo packages # terminfo packages
pkgs.foot.terminfo pkgs.foot.terminfo

View file

@ -1,26 +1,43 @@
{ pkgs, ... }: { lib, pkgs, ... }:
{ {
# useful for people that want to test stuff options.nixCommunity.motd = lib.mkOption {
environment.systemPackages = [ type = lib.types.str;
pkgs.fd description = "message of the day";
pkgs.git };
pkgs.nano
pkgs.nix-output-monitor
pkgs.nix-tree
pkgs.nixpkgs-review
pkgs.ripgrep
pkgs.tig
];
programs.nix-index-database.comma.enable = true; config = {
nixCommunity.motd = ''
Welcome to Nix Community!
For a faster Nixpkgs clone use:
git clone --reference /var/lib/nixpkgs.git https://github.com/NixOS/nixpkgs.git
programs.zsh = {
enable = true;
# https://grml.org/zsh/grmlzshrc.html
# https://grml.org/zsh/grml-zsh-refcard.pdf
interactiveShellInit = ''
source ${pkgs.grml-zsh-config}/etc/zsh/zshrc
''; '';
promptInit = ""; # otherwise it'll override the grml prompt
# useful for people that want to test stuff
environment.systemPackages = [
pkgs.fd
pkgs.git
pkgs.nano
pkgs.nix-output-monitor
pkgs.nix-tree
pkgs.nixpkgs-review
pkgs.ripgrep
pkgs.tig
];
programs.nix-index-database.comma.enable = true;
programs.zsh = {
enable = true;
# https://grml.org/zsh/grmlzshrc.html
# https://grml.org/zsh/grml-zsh-refcard.pdf
interactiveShellInit = ''
source ${pkgs.grml-zsh-config}/etc/zsh/zshrc
'';
promptInit = ""; # otherwise it'll override the grml prompt
};
}; };
} }