24 lines
442 B
Nix
24 lines
442 B
Nix
{ pkgs, ... }: {
|
|
imports = [
|
|
../../modules/bundle.nix
|
|
../../modules/hyprlock.nix
|
|
|
|
../../packages/coding.nix
|
|
../../packages/desktop.nix
|
|
../../packages/utils.nix
|
|
../../packages/art.nix
|
|
|
|
./modules/git.nix
|
|
./modules/hyprland.nix
|
|
./modules/style.nix
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
home = {
|
|
username = "sweetbread";
|
|
homeDirectory = "/home/sweetbread";
|
|
stateVersion = "23.11";
|
|
};
|
|
}
|