nix-dotfiles/home/full.nix

17 lines
174 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-17 21:40:17 +02:00
./stylix.nix
2024-06-13 14:40:34 +02:00
];
2024-06-16 12:22:31 +02:00
home.packages = with pkgs; [
firefox
gimp
2024-06-17 21:40:17 +02:00
dconf
2024-06-16 12:22:31 +02:00
];
2024-06-13 14:40:34 +02:00
}