mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-18 19:02:17 +00:00
13 lines
246 B
Nix
13 lines
246 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
imports = [
|
|
../global
|
|
../features/cli/extras
|
|
../features/desktop
|
|
../lib/chromeos.nix
|
|
];
|
|
|
|
# extra packages
|
|
home.packages = with pkgs; [
|
|
dive # Explore docker images
|
|
];
|
|
}
|