Files
nixos-dots/home/game.nix
2026-01-15 18:31:30 +00:00

20 lines
293 B
Nix
Executable File

{
config,
lib,
pkgs,
inputs,
...
}:
{
imports = [ ./common.nix ];
# User-specific color scheme
colorScheme = inputs.nix-colors.colorSchemes.hardcore;
stylix.base16Scheme.base00 = "141414";
# User identity
home.username = "game";
home.homeDirectory = "/home/game";
}