nix-dotfiles/home/full.nix

15 lines
147 B
Nix
Raw Normal View History

2024-06-13 14:40:34 +02:00
{ pkgs, lib, ... }:
{
imports = [
./base.nix
./code.nix
./sway.nix
];
2024-06-16 12:22:31 +02:00
home.packages = with pkgs; [
firefox
gimp
];
2024-06-13 14:40:34 +02:00
}