27 lines
445 B
Nix
Raw Normal View History

2024-10-02 22:10:08 +03:00
{ pkgs, ... }: {
2024-04-17 05:52:14 +05:00
imports = [
2024-10-02 22:10:08 +03:00
../../modules/bundle.nix
../../packages/desktop.nix
2024-10-21 22:28:39 +03:00
../../packages/art.nix
2024-10-02 22:10:08 +03:00
./modules/aagl.nix
./modules/git.nix
./modules/hyprland.nix
./modules/style.nix
./modules/waybar.nix
2024-04-17 05:52:14 +05:00
];
2024-10-02 22:10:08 +03:00
nixpkgs.config.allowUnfree = true;
2024-04-17 05:52:14 +05:00
home = {
2024-09-29 21:47:41 +03:00
username = "chest";
homeDirectory = "/home/chest";
2024-04-17 05:52:14 +05:00
stateVersion = "23.11";
2024-10-02 22:10:08 +03:00
packages = with pkgs; [
nautilus
];
2024-04-17 05:52:14 +05:00
};
}