dotfiles/home/hosts/penguin-fw.nix

14 lines
240 B
Nix
Raw Normal View History

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