nix-dotfiles/home/gunalx/full.nix

25 lines
294 B
Nix
Raw Permalink Normal View History

2024-06-13 14:40:34 +02:00
{ pkgs, lib, ... }:
{
imports = [
./base.nix
./code.nix
./sway.nix
2024-09-11 14:57:36 +02:00
./colors.nix
2024-06-13 14:40:34 +02:00
2024-09-17 18:14:26 +02:00
#./stylix.nix
2024-09-11 14:57:36 +02:00
#inputs.nix-colors.homeManagerModules.default
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-09-13 00:32:00 +02:00
feh
ripgrep
eza
bottom
killall
2024-06-16 12:22:31 +02:00
];
2024-06-13 14:40:34 +02:00
}