nix: Extra packages
This commit is contained in:
parent
8ae219fb83
commit
73cbf01b63
|
@ -1,11 +1,4 @@
|
|||
{# Include rules-determined snippets #}
|
||||
{% if software_full %}
|
||||
{% include 'snippets/pm_android_tools.j2' %}
|
||||
{% include 'snippets/pm_multimedia_editors.j2' %}
|
||||
{% include 'snippets/pm_download.j2' %}
|
||||
{% include 'snippets/pm_wine.j2' %}
|
||||
{% include 'snippets/pm_document.j2' %}
|
||||
{% endif %}
|
||||
{# Inclde dev snippets #}
|
||||
{% if dev_stuffs %}
|
||||
{% include 'snippets/pm_dev_common.j2' %}
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{#
|
||||
Stuff for accessing Android phones
|
||||
#}
|
||||
{% if not termux %}
|
||||
{% if arch_based %}
|
||||
android-tools
|
||||
android-udev
|
||||
{% elif debian_based %}
|
||||
adb
|
||||
{% endif %}
|
||||
{% endif %}
|
|
@ -1,27 +0,0 @@
|
|||
{# Document utilities #}
|
||||
pandoc
|
||||
{% if arch_based %}
|
||||
texlive-bibtexextra
|
||||
texlive-core
|
||||
texlive-fontsextra
|
||||
texlive-formatsextra
|
||||
texlive-latexextra
|
||||
texlive-pictures
|
||||
texlive-pstricks
|
||||
texlive-science
|
||||
{% elif debian_based %}
|
||||
texlive-base
|
||||
texlive-lang-european
|
||||
{% endif %}
|
||||
pdftk
|
||||
{% if display_server %}
|
||||
{# Spell checking #}
|
||||
hunspell-en_gb
|
||||
hunspell-en_us
|
||||
hunspell-fr
|
||||
hunspell-nl
|
||||
{# libreoffice-extension-grammalecte-fr #}
|
||||
{% if arch_based %}
|
||||
libreoffice-extension-languagetool
|
||||
{% endif %}
|
||||
{% endif %}
|
|
@ -1,12 +0,0 @@
|
|||
{#
|
||||
Programs used to download sutff off the internet
|
||||
#}
|
||||
wget
|
||||
curl
|
||||
rsync
|
||||
yt-dlp
|
||||
megatools
|
||||
transmission-cli
|
||||
{% if display_server %}
|
||||
transmission-qt
|
||||
{% endif %}
|
|
@ -1,12 +0,0 @@
|
|||
{#
|
||||
Big behemoth applications
|
||||
#}
|
||||
{% if display_server %}
|
||||
gimp
|
||||
inkscape
|
||||
darktable
|
||||
blender
|
||||
puddletag
|
||||
musescore
|
||||
audacity
|
||||
{% endif %}
|
|
@ -1,21 +0,0 @@
|
|||
{#
|
||||
Shell related stuff
|
||||
#}
|
||||
{# ZSH #}
|
||||
zsh
|
||||
antigen
|
||||
{% if arch_based %}
|
||||
{# Antigen takex care of the above for others platforms #}
|
||||
zsh-autosuggestions
|
||||
zsh-completions
|
||||
zsh-history-substring-search
|
||||
zsh-syntax-highlighting
|
||||
{% endif %}
|
||||
tmux
|
||||
bash-completion
|
||||
fzf
|
||||
{% if arch_based and ansible_architecture == 'x86_64' %}
|
||||
powerline-go-bin
|
||||
{% else %}
|
||||
powerline-go
|
||||
{% endif %}
|
|
@ -1,11 +0,0 @@
|
|||
{% if ansible_architecture == 'x86_64' %}
|
||||
wine
|
||||
{% if arch_based %}
|
||||
wine-gecko
|
||||
wine-mono
|
||||
mono
|
||||
lib32-libpulse
|
||||
{% elif debian_based %}
|
||||
mono-runtime
|
||||
{% endif %}
|
||||
{% endif %}
|
|
@ -5,5 +5,6 @@
|
|||
./modules/desktop.nix
|
||||
./modules/battery.nix
|
||||
./modules/wireless.nix
|
||||
# ./modules/extra.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
users.users.geoffrey.packages = with pkgs; [
|
||||
powertop
|
||||
];
|
||||
environment.systemPackages = with pkgs; [ tlp ];
|
||||
environment.systemPackages = with pkgs; [ tlp powertop ];
|
||||
}
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
networking.hostName = "nixos";
|
||||
networking.wireless.enable = true; # Enable wireless support via wpa_supplicant
|
||||
|
||||
time.timeZone = "Europe/Amsterdam";
|
||||
|
||||
|
|
48
config/nix/modules/extra.nix
Normal file
48
config/nix/modules/extra.nix
Normal file
|
@ -0,0 +1,48 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
users.users.geoffrey. packages = with pkgs; [
|
||||
# android tools
|
||||
android-tools
|
||||
|
||||
# multimedia editors
|
||||
gimp
|
||||
inkscape
|
||||
darktable
|
||||
blender
|
||||
puddletag
|
||||
musescore
|
||||
audacity
|
||||
|
||||
# downloading
|
||||
yt-dlp
|
||||
megatools
|
||||
transmission
|
||||
transmission-qt
|
||||
|
||||
# wine
|
||||
wine
|
||||
# TODO wine-gecko wine-mono lib32-libpulse (?)
|
||||
|
||||
# documents
|
||||
pandoc
|
||||
texlive.combined.scheme-full
|
||||
pdftk
|
||||
hunspell
|
||||
hunspellDicts.en_GB-ize
|
||||
hunspellDicts.en_US
|
||||
hunspellDicts.fr-moderne
|
||||
hunspellDicts.nl_NL
|
||||
# TODO libreoffice-extension-languagetool or libreoffice-extension-grammalecte-fr
|
||||
|
||||
# gaming
|
||||
steam
|
||||
yuzu-mainline
|
||||
minecraft
|
||||
# TODO factorio
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
# android tools
|
||||
android-udev-rules
|
||||
];
|
||||
}
|
|
@ -1,4 +1,5 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
networking.wireless.enable = true; # Enable wireless support via wpa_supplicant
|
||||
environment.systemPackages = with pkgs; [ wirelesstools ];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue