.dotfiles/dot_config/flake/home/wash/wash.nix
2025-02-08 09:56:15 -05:00

20 lines
336 B
Nix

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