dotfiles/home/pixnix.nix

15 lines
271 B
Nix
Raw Normal View History

2023-07-29 02:56:41 +00:00
{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
2023-09-30 19:47:41 +00:00
inputs.hyprland.homeManagerModules.default
2023-07-29 02:56:41 +00:00
./global
./features/cli/extras
2023-07-29 02:56:41 +00:00
./features/desktop
2023-09-30 19:47:41 +00:00
./features/desktop/hyprland
2023-07-29 02:56:41 +00:00
];
# packages
home.packages = with pkgs; [
vagrant
];
}