27 lines
475 B
Nix
Raw Normal View History

2025-01-10 21:44:59 +03:00
{ pkgs, pkgs-stable, ... }: {
2024-04-17 05:52:14 +05:00
imports = [
2024-10-02 22:10:08 +03:00
../../modules/bundle.nix
2024-10-21 22:28:39 +03:00
../../packages/art.nix
2025-01-10 21:44:59 +03:00
../../packages/desktop.nix
2024-10-02 22:10:08 +03:00
./modules/git.nix
./modules/hyprland.nix
./modules/style.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
2025-01-10 21:44:59 +03:00
] ++ (with pkgs-stable; [
jetbrains.pycharm-community
]);
2024-04-17 05:52:14 +05:00
};
}