summaryrefslogtreecommitdiff
path: root/nixhome/.config/nixpkgs/home.nix
blob: 9142298497d3784d38a67b00e756c8846ad640f7 (plain)
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
{ config, pkgs, ... }:

let
    unstable = import <unstable> {};
    osu-nixos = (import (builtins.fetchGit { url = "https://github.com/notgne2/osu-nixos.git"; rev = "2df43333e6ab7cd9d839607acd65645567d75536"; }));
in {
    # Yep makes sense
    programs.home-manager.enable = true;

    home.packages = (with unstable; [
        pass fzf entr

        # X stuff required by scripts
        feh rofi xorg.xmodmap xss-lock xclip xorg.xkill
        xdotool dunst xcompmgr scrot libnotify i3lock
        xbindkeys

        # Developing
        gcc go clang-tools
        gdb php unstable.ghc stack racket chez rustc cargo rls kak-lsp
        editorconfig-core-c chez
        
        # Gui applications
        pkgs.firefox pavucontrol evince leafpad inkscape gimp meld pinentry
        termite wireshark spotify vlc mpv xorg.xev vimHugeX
        (mumble.override { pulseSupport = true; })
        qutebrowser mate.caja audacity xournal ipcalc playerctl sxiv
        xarchive pandoc okular

        # Other stuff
        texlive.combined.scheme-full

        youtube-dl
        aspell aspellDicts.da aspellDicts.en aspellDicts.nl
        ffmpegthumbnailer tio imagemagick sox poppler_utils
        ffmpeg fortune

        osu-nixos.packages.${pkgs.system}.osu-lazer

        # The python env created in overlay
        pkgs.defaultPythonEnv
    ]) ++ (with pkgs; [
        gnome3.gnome-calendar
        gnome3.gnome-disk-utility gnome3.gnome-system-monitor
        gnome3.cheese gnome3.gnome-calculator
        gnome3.file-roller gnome3.simple-scan
        # Email and calendar
        # evolution evolution-data-server evolution-ews

        libreoffice-fresh 
    ]);
}