hell n back

This commit is contained in:
Jet Pham 2024-03-22 23:35:56 -07:00
parent 3ee6761b45
commit cac7203033
45 changed files with 2988 additions and 177 deletions

24
hosts/laptop/user.nix Normal file
View file

@ -0,0 +1,24 @@
{ config, lib, inputs, ...}:
{
imports = [ ../../modules/default.nix ];
config.modules = {
# gui
firefox.enable = true;
kitty.enable = true;
eww.enable = true;
dunst.enable = true;
hyprland.enable = true;
wofi.enable = true;
# cli
nvim.enable = true;
git.enable = true;
nushell.enable = true;
direnv.enable = true;
# system
xdg.enable = true;
packages.enable = true;
};
}