dots/home/laptop/home.nix
2025-11-21 10:44:27 +01:00

26 lines
525 B
Nix

{pkgs, ...}: {
home = {
username = "maxag";
homeDirectory = "/home/maxag";
stateVersion = "25.11";
};
programs.home-manager.enable = true;
home.packages = with pkgs; [
brightnessctl
];
imports = [
./hyprland.nix
../modules/nvf.nix
../modules/stylix.nix
../modules/programming.nix
../modules/multimedia.nix
../modules/communication.nix
../modules/rice.nix
../modules/shells.nix
../modules/passwords.nix
../modules/create-project/create-project.nix
];
}