dotfiles/home/pixnix.nix

14 lines
226 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
2023-11-05 03:03:22 +00:00
./features/desktop/chrome.nix
2023-07-29 02:56:41 +00:00
];
# packages
home.packages = with pkgs; [
vagrant
];
}