nixos-config/ahrc-pc/home.nix

20 lines
411 B
Nix
Raw Normal View History

2024-09-30 16:43:05 +02:00
{
imports = [ ../common/home.nix ];
home.stateVersion = "24.05";
programs.zsh = {
localVariables = {
PROMPT = ''
[%F{magenta}%B%n@%m%f%b][%F{blue}%B%50<...<%5~%<<%b%f][%B%?%b]
[%B%j%b%# '';
};
};
2024-10-15 09:51:07 +02:00
programs.niri.settings = {
input.keyboard.xkb.layout = "us";
outputs."HDMI-1".scale = 1;
layout.border.active.color = "#d966ff";
};
2024-09-30 16:43:05 +02:00
}