dotfiles/home/pixnix.nix

16 lines
239 B
Nix
Raw Normal View History

2023-07-29 02:56:41 +00:00
{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
./global
./features/cli/extras
2023-07-29 02:56:41 +00:00
./features/desktop
./features/desktop/hyprland.nix
2023-07-29 02:56:41 +00:00
];
# packages
home.packages = with pkgs; [
2023-09-26 01:20:43 +00:00
kitty
2023-07-29 02:56:41 +00:00
vagrant
];
2023-09-27 01:24:07 +00:00
2023-07-29 02:56:41 +00:00
}