Compare commits
14 Commits
2017-09-09
...
2017-11-25
| Author | SHA1 | Date | |
|---|---|---|---|
| c0493bb038 | |||
| 3894796a14 | |||
| 6d13167f38 | |||
| c00cdb9343 | |||
| 697f44f3bc | |||
| 75682ee664 | |||
| 3969805880 | |||
| 99eac99e81 | |||
| 7ca303303c | |||
| 5453b6bdcd | |||
| b26bc099c8 | |||
| 29b388ee95 | |||
| 10937423fc | |||
|
|
38cf4631dd |
@@ -24,7 +24,7 @@ mkIf (flags.officeSuite && flags.graphical) {
|
||||
## Editeur de texte
|
||||
#lyx # surcouche WISIWIM à LaTeX
|
||||
#focuswriter # outil pour l'écriture
|
||||
textadept # un éditeur de texte facile pour copier-coller graphique
|
||||
#textadept # un éditeur de texte facile pour copier-coller graphique
|
||||
#zim # outil de prise de notes, wiki de bureau
|
||||
|
||||
## Visionneuse
|
||||
|
||||
@@ -30,22 +30,4 @@ environment.systemPackages = with pkgs; [
|
||||
transmission_gtk
|
||||
transmission_remote_gtk
|
||||
];
|
||||
|
||||
/* TODO: voir pour appliquer la personnalisation
|
||||
nixpkgs.config.packageOverrides = pkgs: {
|
||||
clawsMail = pkgs.clawsMail.override {
|
||||
enablePluginFancy = false; # nécessite wekitgtk qui est troué
|
||||
enablePluginPdf = true;
|
||||
enablePluginRavatar = true;
|
||||
enablePluginSmime = true;
|
||||
enablePluginVcalendar = true;
|
||||
enableSpellcheck = true;
|
||||
};
|
||||
mumble = pkgs.mumble.override { pulseSupport = true; };
|
||||
};
|
||||
*/
|
||||
|
||||
#nixpkgs.config.permittedInsecurePackages = [
|
||||
# "webkitgtk-2.4.11" # pour que le plugin fancy de claws-mail fonctionne
|
||||
#];
|
||||
}
|
||||
|
||||
@@ -26,6 +26,7 @@ in
|
||||
./edition-photo.nix # modifier les photos & assimilé
|
||||
./edition-video.nix # modifier les vidéos
|
||||
./jeux.nix # jouer, tout simplement ;)
|
||||
./radio.nix # outils pour faire de la radio SDR
|
||||
|
||||
## if isDesktop
|
||||
./adminsys.nix # pour gérer le système dans son ensemble et les services
|
||||
|
||||
26
applications/graphical/radio.nix
Normal file
26
applications/graphical/radio.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let
|
||||
inherit (lib) mkIf mkMerge mkThenElse;
|
||||
annuaire = config.r6d.machines;
|
||||
currentMachine = annuaire."${config.networking.hostName}";
|
||||
flags = currentMachine.configurationFlags;
|
||||
in
|
||||
|
||||
mkIf (flags.radio && flags.graphical) {
|
||||
|
||||
# Paquets
|
||||
environment.systemPackages = with pkgs; [
|
||||
## GUI
|
||||
gqrx # GUI
|
||||
#gnuradio # Software Defined Radio (SDR) software
|
||||
gnuradio-with-packages
|
||||
|
||||
## A Trier
|
||||
#
|
||||
#gnuradio-osmosdr # Gnuradio block for OsmoSDR and rtl-sdr
|
||||
|
||||
inspectrum # Tool for analysing captured signals from sdr receivers
|
||||
kalibrate-rtl # Calculate local oscillator frequency offset in RTL-SDR devices
|
||||
];
|
||||
}
|
||||
45
applications/overrides.nix
Normal file
45
applications/overrides.nix
Normal file
@@ -0,0 +1,45 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let
|
||||
inherit (lib) mkIf mkMerge mkThenElse;
|
||||
annuaire = config.r6d.machines;
|
||||
currentMachine = annuaire."${config.networking.hostName}";
|
||||
flags = currentMachine.configurationFlags;
|
||||
in
|
||||
|
||||
mkIf true {
|
||||
|
||||
nixpkgs.config.packageOverrides = pkgs: {
|
||||
clawsMail = pkgs.clawsMail.override {
|
||||
enablePgp = true;
|
||||
enablePluginArchive = true;
|
||||
enablePluginFancy = false; # nécessite wekitgtk qui est troué
|
||||
enablePluginPdf = true;
|
||||
enablePluginRavatar = true;
|
||||
enablePluginSmime = true;
|
||||
enablePluginVcalendar = true;
|
||||
enableSpellcheck = true;
|
||||
};
|
||||
|
||||
ffmpeg-full = pkgs.ffmpeg-full.override {
|
||||
nonfreeLicensing = true;
|
||||
nvenc = true;
|
||||
};
|
||||
|
||||
gnuradio-with-packages = pkgs.gnuradio-with-packages.override {
|
||||
extraPackages = with pkgs; [
|
||||
gnuradio-ais
|
||||
gnuradio-gsm
|
||||
gnuradio-nacl
|
||||
gnuradio-osmosdr
|
||||
gnuradio-rds
|
||||
];
|
||||
};
|
||||
|
||||
mumble = pkgs.mumble.override { pulseSupport = true; };
|
||||
};
|
||||
|
||||
#nixpkgs.config.permittedInsecurePackages = [
|
||||
# "webkitgtk-2.4.11" # pour que le plugin fancy de claws-mail fonctionne
|
||||
#];
|
||||
}
|
||||
@@ -22,8 +22,9 @@ mkIf true {
|
||||
ntp
|
||||
powerline-fonts
|
||||
powertop
|
||||
#python27Packages.ansible2
|
||||
python27Packages.glances
|
||||
#ansible
|
||||
python36Packages.glances
|
||||
pv # afficher le débit d'un flux dd if=/dev/zero | pv | dd of=/dev/null
|
||||
sysstat # pour la commande "iostat -x -1" de monitoring d'activité disque
|
||||
usbutils
|
||||
|
||||
|
||||
@@ -12,7 +12,8 @@ mkIf flags.officeSuite {
|
||||
# Paquets
|
||||
environment.systemPackages = with pkgs; [
|
||||
# Bureautique
|
||||
aspell aspellDicts.fr # correction d'ortographe
|
||||
aspell aspellDicts.fr # correction d'ortographe
|
||||
python36Packages.grammalecte # correction gramatical
|
||||
|
||||
# Gestion de tâche
|
||||
taskwarrior # gestionnaire de tâches en console
|
||||
|
||||
@@ -14,8 +14,8 @@ environment.systemPackages = with pkgs; [
|
||||
# Clients Internet
|
||||
|
||||
## Réseaux sociaux
|
||||
#python27Packages.turses # client twitter en ncurse
|
||||
#python27Packages.rainbowstream # client twitter en console
|
||||
#turses # client twitter en ncurse
|
||||
#python36Packages.rainbowstream # client twitter en console
|
||||
#rtv # client reddit en console
|
||||
|
||||
## Mail & Discussion (texte, audio)
|
||||
|
||||
@@ -26,6 +26,7 @@ in
|
||||
./edition-photo.nix # modifier les photos & assimilé
|
||||
./edition-video.nix # modifier les vidéos
|
||||
./jeux.nix # jouer, tout simplement ;)
|
||||
./radio.nix # outils pour faire de la radio SDR
|
||||
|
||||
## if isDesktop
|
||||
./adminsys.nix # pour gérer le système dans son ensemble et les services
|
||||
|
||||
@@ -23,7 +23,7 @@ mkIf flags.developpement-haskell {
|
||||
ghc-mod # outil d'analyse de code haskell utilisé par IDE
|
||||
hindent # indentation code
|
||||
hlint # qualite de code, analyse statique de code + astuces & bonnes pratiques
|
||||
postgrest # mapper HTTP <-> PostgreSQL
|
||||
#postgrest # mapper HTTP <-> PostgreSQL
|
||||
servant # génération d'API REST
|
||||
stylish-haskell # qualité de code
|
||||
turtle # genre shell-scripting
|
||||
|
||||
@@ -13,13 +13,4 @@ mkIf flags.edition-video {
|
||||
environment.systemPackages = with pkgs; [
|
||||
ffmpeg-full # assemblage de flux audio & video en ligne de commande
|
||||
];
|
||||
|
||||
/* TODO: voir pour appliquer la personnalisation
|
||||
nixpkgs.config.packageOverrides = pkgs: {
|
||||
ffmpeg-full = pkgs.ffmpeg-full.override {
|
||||
nonfreeLicensing = true;
|
||||
nvenc = true;
|
||||
};
|
||||
};
|
||||
*/
|
||||
}
|
||||
|
||||
@@ -19,15 +19,14 @@ mkIf true {
|
||||
|
||||
## Diagnostic
|
||||
arp-scan
|
||||
#mtr -> installé plus bas
|
||||
nmap # outil de scan de port réseau
|
||||
whois
|
||||
];
|
||||
|
||||
# Paquets avec setuid root
|
||||
security.wrappers = {
|
||||
# outil de diagnostic réseau
|
||||
mtr.source = "${pkgs.mtr}/bin/mtr";
|
||||
};
|
||||
# https://github.com/NixOS/nixpkgs/issues/30335
|
||||
# Some programs need SUID wrappers, can be configured further or are started in user sessions.
|
||||
programs.mtr.enable = true;
|
||||
|
||||
networking.firewall = {
|
||||
allowedTCPPorts = [
|
||||
|
||||
30
applications/terminal/radio.nix
Normal file
30
applications/terminal/radio.nix
Normal file
@@ -0,0 +1,30 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let
|
||||
inherit (lib) mkIf mkMerge mkThenElse;
|
||||
annuaire = config.r6d.machines;
|
||||
currentMachine = annuaire."${config.networking.hostName}";
|
||||
flags = currentMachine.configurationFlags;
|
||||
in
|
||||
|
||||
mkIf flags.radio {
|
||||
|
||||
# pour que ça marche
|
||||
# sudo rmmod dvb_usb_rtl28xxu
|
||||
|
||||
# lecture radio FM
|
||||
# rtl_fm -f 96.9e6 -M wbfm -s 440000 -r 44100 - | aplay -r 44100 -f S16_LE
|
||||
# rtl_fm -f 96.95e6 -M wbfm -s 441000 -r 44100 - | aplay -r 44100 -f S16_LE -t raw -c 1
|
||||
# rtl_fm -f 96.95e6 -M wbfm -s 441000 -r 44100 -E deemp - |pv| aplay -r 44100 -f S16_LE -t raw -c 1
|
||||
|
||||
# Paquets
|
||||
environment.systemPackages = with pkgs; [
|
||||
gnss-sdr # Global Navigation Satellite Systems software-defined receiver
|
||||
rtl-sdr # Turns your Realtek RTL2832 based DVB dongle into a SDR receiver
|
||||
];
|
||||
|
||||
# Configuration matérielle
|
||||
boot.blacklistedKernelModules = [
|
||||
"dvb_usb_rtl28xxu"
|
||||
];
|
||||
}
|
||||
3
base.nix
3
base.nix
@@ -6,6 +6,9 @@
|
||||
/*./config-generator.nix*/
|
||||
./options.nix
|
||||
|
||||
# Redéfinition d'applications et de modules
|
||||
./applications/overrides.nix
|
||||
|
||||
# subfolders
|
||||
./applications/graphical/default.nix
|
||||
./applications/terminal/default.nix
|
||||
|
||||
@@ -12,7 +12,7 @@ in
|
||||
nix.buildCores = 0;
|
||||
|
||||
# The NixOS release to be compatible with for stateful data such as databases.
|
||||
system.stateVersion = "17.03";
|
||||
system.stateVersion = "18.03";
|
||||
|
||||
# copies the NixOS configuration file (usually /etc/nixos/configuration.nix) and links it from the resulting system (getting to /run/current-system/configuration.nix)
|
||||
system.copySystemConfiguration = true;
|
||||
|
||||
@@ -47,6 +47,7 @@ let
|
||||
print = mkEnableOption "Profil pour activer cups & pouvoir imprimer.";
|
||||
pulseaudio = mkEnableOption "Profil pour activer pulseaudio.";
|
||||
rabbitmq = mkEnableOption "Profil pour activer le service de messagerie AMQP.";
|
||||
radio = mkEnableOption "Profil pour activer les outils pour faire de radio numérique - SDR.";
|
||||
radicale = mkEnableOption "Profil pour activer le service d'hébergement de calendrier + tâches & contacts.";
|
||||
rmilter = mkEnableOption "Profil pour activer le filtrage de mails par postfix.";
|
||||
scanner = mkEnableOption "Profil pour que les scanners soient utilisable.";
|
||||
|
||||
@@ -13,7 +13,7 @@ mkIf flags.docker {
|
||||
environment.systemPackages = with pkgs; [
|
||||
# Ecosystème Docker
|
||||
docker
|
||||
python27Packages.docker_compose
|
||||
python36Packages.docker_compose
|
||||
];
|
||||
|
||||
virtualisation.docker.enable = true;
|
||||
|
||||
@@ -21,6 +21,15 @@ mkIf flags.munin {
|
||||
## Noeud de supervision munin = pas de stockage des données locales
|
||||
services.munin-node = {
|
||||
enable = true;
|
||||
extraConfig = ''
|
||||
# Ignore the apc_nis plugin, as it throws errors as I don't have an UPS.
|
||||
# It's there because munin-node-configure is called with the contrib group,
|
||||
# and the plugin has no method to check whether there's a compatible UPS available.
|
||||
ignore_file ^apc_nis$
|
||||
|
||||
ignore_file ^sensors_-wrapped$
|
||||
ignore_file ^.sensors_-wrapped$
|
||||
'';
|
||||
};
|
||||
systemd.services.munin-node = {
|
||||
path = with pkgs; [ munin lm_sensors ];
|
||||
@@ -41,7 +50,7 @@ mkIf flags.munin {
|
||||
address 127.0.0.1
|
||||
'';
|
||||
extraGlobalConfig = ''
|
||||
contact.email.command ${pkgs.mutt}/bin/mutt -F /etc/nixos/base/public/services/munin-muttrc -s "Munin notification for ''${var:host}" root@prunetwork.fr
|
||||
contact.email.command ${pkgs.mutt}/bin/mutt -F /etc/nixos/base/services/munin-muttrc -s "Munin notification for ''${var:host}" root@prunetwork.fr
|
||||
'';
|
||||
};
|
||||
|
||||
|
||||
@@ -9,6 +9,9 @@ in
|
||||
|
||||
mkIf flags.pulseaudio {
|
||||
|
||||
# Notes
|
||||
# commande pour lister les cartes son : pacmd list-cards
|
||||
|
||||
# Paquets
|
||||
environment.systemPackages = with pkgs; [
|
||||
paprefs # préferences pulseaudio
|
||||
|
||||
Reference in New Issue
Block a user