.dotfiles/dot_config/flake/home/wash/wash.nix
2025-02-13 21:32:58 -05:00

19 lines
299 B
Nix

{
config,
pkgs,
...
}: {
imports = [../common.nix ../gnome.nix ../home-backup.nix ../gui.nix];
home = {
username = "tyler";
homeDirectory = "/home/tyler";
packages = with pkgs; [
ventoy
(config.lib.nixGL.wrap renderdoc)
];
stateVersion = "23.11";
};
}