This commit is contained in:
Hadi
2024-03-11 19:36:05 +01:00
commit dc9c7c8461
48 changed files with 1952 additions and 0 deletions

25
home/home.nix Normal file
View File

@@ -0,0 +1,25 @@
{ config, pkgs, ...}: {
home.username = "hadi";
home.homeDirectory = "/home/hadi";
home.packages = with pkgs; [
vscode
];
home.stateVersion = "23.11";
programs.home-manager.enable = true;
imports = [
./hyprland
./nvim
./waybar
./kitty
./dunst
./wlogout
./wofi
./qutebrowser
./git
./shell
./misc
];
}