Files
flake/home/hosts/oparic-local-dev.nix
T
2026-05-17 11:10:10 +08:00

18 lines
317 B
Nix

{ config, lib, pkgs, ... }:
{
home.homeDirectory = "/home/origami";
imports = [
../modules/common.nix
../modules/shell.nix
../modules/zsh.nix
../modules/shell-develop.nix
../modules/ssh.nix
];
programs.zsh.initContent = ''
zstyle ':prompt:grml:*:items:user' pre '%F{green}'
'';
}