snowflake/modules/home/home.nix
2023-01-30 06:09:00 -05:00

23 lines
305 B
Nix
Executable file

{config, pkgs, ...}:
{
imports = [
./gtk/default.nix
];
programs.home-manager.enable = true;
home = {
username = "notoh";
homeDirectory = "/home/notoh";
stateVersion = "23.05";
packages = [
pkgs.alsa-lib
pkgs.boost
pkgs.qt5.full
pkgs.openssl
];
};
}