mirror of
https://git.sr.ht/~azikx/wyswort
synced 2024-10-30 17:16:20 +00:00
55 lines
758 B
Nix
55 lines
758 B
Nix
{ pkgs, inputs, config, ... }:
|
|
{
|
|
imports = [
|
|
inputs.nur.hmModules.nur
|
|
];
|
|
home.packages = with pkgs; [
|
|
home-manager
|
|
|
|
# (vivaldi.override {
|
|
# isSnapshot = true;
|
|
# })
|
|
vieb
|
|
qutebrowser
|
|
vesktop
|
|
tor-browser
|
|
qbittorrent-enhanced
|
|
|
|
xdg-user-dirs
|
|
libreoffice-fresh
|
|
onlyoffice-bin
|
|
|
|
nemo-with-extensions
|
|
nemo-fileroller
|
|
nemo-emblems
|
|
gvfs
|
|
|
|
obsidian
|
|
inkscape
|
|
|
|
popsicle
|
|
ventoy
|
|
|
|
swayimg
|
|
anime4k
|
|
cheese
|
|
|
|
bottles
|
|
mindustry-wayland
|
|
mangohud
|
|
superTuxKart
|
|
|
|
(prismlauncher.override {
|
|
jdks = [
|
|
temurin-bin-21
|
|
temurin-bin-17
|
|
temurin-bin-8
|
|
];
|
|
})
|
|
|
|
config.nur.repos.abszero.palgen
|
|
config.nur.repos.rycee.mozilla-addons-to-nix
|
|
inputs.ayugram-desktop.packages.${pkgs.system}.default
|
|
];
|
|
}
|