.dotfiles/dot_config/flake/machines/wash/home.nix
2025-09-20 00:08:41 -04:00

29 lines
440 B
Nix

{pkgs, ...}: {
imports = [
../../home/common.nix
../../home/darkman.nix
../../modules/home/firefox
../../modules/home/ghostty.nix
../../home/home-backup.nix
../../home/gui.nix
# ../../home/gnome.nix
../../home/niri.nix
../../home/helide
];
home = {
username = "tyler";
homeDirectory = "/home/tyler";
packages = with pkgs; [
godot
];
stateVersion = "23.11";
};
}