57 lines
No EOL
812 B
Nix
57 lines
No EOL
812 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
|
|
in {
|
|
users.users.lyes.packages = with pkgs; [
|
|
# Software
|
|
firefox
|
|
thunderbird
|
|
discord
|
|
mpv
|
|
vlc
|
|
syncplay
|
|
gnome.gnome-tweaks
|
|
gnome-extension-manager
|
|
unstable.protonmail-bridge-gui
|
|
|
|
# Games
|
|
citra-canary
|
|
steam
|
|
minecraft
|
|
vvvvvv
|
|
|
|
# Utilities
|
|
home-manager
|
|
nix-index
|
|
direnv
|
|
starship
|
|
dropbox
|
|
yt-dlp
|
|
wl-clipboard
|
|
|
|
# Customization
|
|
adw-gtk3
|
|
paper-icon-theme
|
|
gnomeExtensions.gsconnect
|
|
|
|
# Programming
|
|
git
|
|
ocaml
|
|
ledit
|
|
nodejs
|
|
|
|
# Containers
|
|
toolbox
|
|
distrobox
|
|
|
|
# Note taking
|
|
texlive.combined.scheme-medium
|
|
pandoc
|
|
|
|
# Multimedia
|
|
pipewire.dev
|
|
pulseaudio
|
|
libopus
|
|
];
|
|
} |