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

28 lines
427 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 = "mrfluffy";
home.homeDirectory = "/home/mrfluffy";
# User-specific GTK theme
gtk.gtk3 = {
theme = {
name = "adw-gtk3";
package = pkgs.adw-gtk3;
};
};
}