nix/home-mods/common/default.nix

32 lines
749 B
Nix
Raw Normal View History

2025-02-24 17:26:11 +01:00
{ config
, lib
, pkgs
, ...
}: {
xdg.enable = true;
# TODO
# remove once stuff is fixed ???
# gets rid of annoying warning that shouldn't apply to my setup
# ref: https://github.com/danth/stylix/issues/865
nixpkgs.overlays = lib.mkForce null;
stylix = {
2025-03-08 01:50:55 +01:00
# overlays.enable = false; # Should be set by the nixosConfiguration and causes useGlobalPkgs error
2025-02-24 17:26:11 +01:00
targets = {
alacritty.enable = true;
bat.enable = true;
btop.enable = true;
firefox.enable = true;
firefox.profileNames = [ "default" ];
fish.enable = true;
fzf.enable = true;
gtk.enable = true;
kde.enable = true; # ??
ncspot.enable = true;
neovim.enable = true;
zellij.enable = true;
};
};
}