add global prompt for claude-code

This commit is contained in:
Yan Lin 2026-02-07 20:29:46 +01:00
parent 1b5bff2a07
commit 9b7af6f568
4 changed files with 17 additions and 42 deletions

View file

@ -1,4 +1,6 @@
{ config, pkgs, ... }: {
{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./containers.nix
@ -7,7 +9,6 @@
../../../modules/tailscale.nix
../../../modules/podman.nix
../../../modules/traefik.nix
../../../modules/login-display.nix
];
# GRUB bootloader with UEFI support
@ -69,14 +70,6 @@
];
};
services.login-display = {
enable = true;
showSystemInfo = true;
showSmartStatus = false;
showDiskUsage = true;
showBorgStatus = false;
};
services.tailscale-custom.exitNode = true;
}