24 lines
442 B
Nix
Raw Normal View History

2024-09-27 12:02:32 +03:00
{ pkgs, ... }: {
2024-04-17 05:52:14 +05:00
imports = [
2024-10-02 22:10:08 +03:00
../../modules/bundle.nix
2024-11-05 01:17:30 +03:00
../../modules/hyprlock.nix
2024-10-02 22:10:08 +03:00
../../packages/coding.nix
../../packages/desktop.nix
../../packages/utils.nix
2024-10-21 22:28:39 +03:00
../../packages/art.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-09-23 00:23:24 +03:00
nixpkgs.config.allowUnfree = true;
2024-04-17 05:52:14 +05:00
home = {
2024-04-22 10:20:35 +03:00
username = "sweetbread";
homeDirectory = "/home/sweetbread";
2024-04-17 05:52:14 +05:00
stateVersion = "23.11";
};
}