dot.nix/host/rune/home/default.nix
Chris Toph abb7d7d5c4 New Installs and Gnome defaults
- Prism launcher
- logism
- asdf-vm
2025-02-08 14:38:54 -05:00

48 lines
770 B
Nix

{
pkgs,
zen,
config,
...
}:
{
# Module imports
imports = [
# Common Modules
../../../common/home
../../../common/git
../../../common/vscode
# Modules
../modules/gnome/home.nix
../modules/fish
];
# Enables app shorcuts
targets.genericLinux.enable = true;
xdg.mime.enable = true;
xdg.systemDirs.data = [ "${config.home.homeDirectory}/.nix-profile/share/applications" ];
home.packages = with pkgs; [
asdf-vm
bitwarden-desktop
chafa
fastfetch
fish
fishPlugins.grc
fishPlugins.tide
grc
inspector
logisim-evolution
monocraft
nerd-fonts.fira-code
nodejs_22
pnpm
prettierd
prismlauncher
spotify
telegram-desktop
termius
vesktop
zen
];
}