mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-09 20:32:18 +00:00
13 lines
226 B
Nix
13 lines
226 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
imports = [
|
|
./global
|
|
./features/cli/extras
|
|
./features/desktop
|
|
./features/desktop/chrome.nix
|
|
];
|
|
|
|
# packages
|
|
home.packages = with pkgs; [
|
|
vagrant
|
|
];
|
|
}
|