dotfiles/home/hosts/penguin-fw.nix

14 lines
246 B
Nix
Raw Normal View History

2023-07-28 22:15:33 +00:00
{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
../global
../features/cli/extras
../features/desktop
../lib/chromeos.nix
];
2024-11-12 22:05:25 +00:00
# extra packages
home.packages = with pkgs; [
dive # Explore docker images
];
}