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