-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfull.nix
58 lines (54 loc) · 1.1 KB
/
full.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
pkgs,
...
}: let
pkgsUnstable = import <nixos-unstable> {};
in {
imports = [
./minimal.nix
./programs/alacritty
./programs/mpv
./programs/vscode
# ./services/syncthing
];
home = {
packages = with pkgs; [
# development
## IDES
jetbrains.idea-ultimate
# games
parsec-bin
prismlauncher
obs-studio
# minecraft # https://github.com/NixOS/nixpkgs/blob/nixos-24.05/pkgs/games/minecraft/default.nix#L156
pkgsUnstable.protontricks
lutris
steam
# rpcs3
xonotic
# media
transmission-gtk
spotify
# spotify-tui
pkgsUnstable.syncplay # temporary: https://github.com/NixOS/nixpkgs/pull/102130
# productivity
## social
# pkgsUnstable.mirage-im # temporary: https://github.com/NixOS/nixpkgs/issues/94905
nheko
## general
chromium
evince
feh
firefox
inkscape
keepassxc
maim
mullvad-vpn
nextcloud-client
tectonic
texlive.combined.scheme-full
texstudio
gnome3.gnome-disk-utility
];
};
}