23 lines
No EOL
305 B
Nix
Executable file
23 lines
No EOL
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
|
|
];
|
|
};
|
|
|
|
} |