26 lines
418 B
Nix
26 lines
418 B
Nix
{ pkgs, ... }: {
|
|
imports = [
|
|
../../modules/bundle.nix
|
|
|
|
../../packages/desktop.nix
|
|
|
|
./modules/aagl.nix
|
|
./modules/git.nix
|
|
./modules/hyprland.nix
|
|
./modules/style.nix
|
|
./modules/waybar.nix
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
home = {
|
|
username = "chest";
|
|
homeDirectory = "/home/chest";
|
|
stateVersion = "23.11";
|
|
|
|
packages = with pkgs; [
|
|
nautilus
|
|
];
|
|
};
|
|
}
|