Files
nixos-dots/home/work.nix
2026-01-22 13:21:58 +00:00

20 lines
318 B
Nix
Executable File

{
config,
lib,
pkgs,
inputs,
...
}:
{
imports = [ ./common.nix ];
# User-specific color scheme (different from mrfluffy)
colorScheme = inputs.nix-colors.colorSchemes.blueish;
stylix.base16Scheme.base00 = "0F1417";
# User identity
home.username = "work";
home.homeDirectory = "/home/work";
}