Compare commits

..

6 Commits

Author SHA1 Message Date
65e5776f86 ménage appli pour préparation migration NixOS 20.03 2020-06-30 18:58:17 +02:00
Yves Dubromelle
235e636451 client mumble à nouveau fréquentable (build sans broncher) 2020-04-16 01:19:06 +02:00
Yves Dubromelle
e849c55297 radio: dump1090 écoute ADB-S des avions et placement sur une carte 2020-04-16 01:19:06 +02:00
Yves Dubromelle
1e51d11778 radio: CubicSDR comme alternative à gqrx 2020-04-16 01:19:06 +02:00
Yves Dubromelle
f39f486f51 awesome: meta+l pour slock et suspend combinés 2020-04-16 01:19:06 +02:00
Yves Dubromelle
2a5809c3de radio: chirp pour programmer les radios portatives 2020-04-16 01:19:06 +02:00
6 changed files with 8 additions and 4 deletions

View File

@@ -29,7 +29,7 @@ mkIf (flags.officeSuite && flags.graphical) {
## Visionneuse
#kde5.okular # pdf
mcomix # livres (cbr, liste d'images), gestion d'une bibliothèque
#mcomix # livres (cbr, liste d'images), gestion d'une bibliothèque # Supprimé dans NixOS 20.03
pdfpc # pdf
qpdfview # pdf
gqview # visionneuse image & gestion basique de collection

View File

@@ -21,7 +21,7 @@ environment.systemPackages = with pkgs; [
clawsMail
hexchat
quasselClient
#mumble
mumble
pidgin
thunderbird

View File

@@ -12,7 +12,9 @@ mkIf (flags.radio && flags.graphical) {
# Paquets
environment.systemPackages = with pkgs; [
## GUI
chirp # Configuration de radios portatives
gqrx # GUI
cubicsdr # Another GUI
gnuradio-with-packages # Software Defined Radio (SDR) software
## A Trier

View File

@@ -13,7 +13,7 @@ mkIf true {
clawsMail = pkgs.clawsMail.override {
enablePgp = true;
enablePluginArchive = true;
enablePluginFancy = false; # nécessite wekitgtk qui est troué
#enablePluginFancy = false; # nécessite wekitgtk qui est troué # Option supprimée dans NixOS 20.03
enablePluginPdf = true;
enablePluginRavatar = true;
enablePluginSmime = true;

View File

@@ -22,6 +22,7 @@ mkIf flags.radio {
gnss-sdr # Global Navigation Satellite Systems software-defined receiver
liquid-dsp # Digital signal processing library for software-defined radios
rtl-sdr # Turns your Realtek RTL2832 based DVB dongle into a SDR receiver
dump1090 # Listen to planes ADS-B and view them on a map
];
# Configuration matérielle

View File

@@ -413,7 +413,8 @@ globalkeys = awful.util.table.join(
awful.key({ modkey, "Shift" }, "F1", function () awful.util.spawn("claws-mail") end, {description = "Lance claws", group = "Lanceurs personnels"}),
awful.key({ modkey, "Shift" }, "F3", function () awful.util.spawn("pcmanfm") end, {description = "Lance pcmanfm", group = "Lanceurs personnels"}),
awful.key({ modkey, "Shift" }, "F6", function () awful.util.spawn("clementine") end, {description = "Lance clementine", group = "Lanceurs personnels"}),
awful.key({ modkey, "Shift" }, "F11", function () awful.util.spawn("xrandr-auto-2") end, {description = "Lance le script xrandr-auto-2", group = "Lanceurs personnels"})
awful.key({ modkey, "Shift" }, "F11", function () awful.util.spawn("xrandr-auto-2") end, {description = "Lance le script xrandr-auto-2", group = "Lanceurs personnels"}),
awful.key({ modkey }, "l", function () awful.util.spawn("slock systemctl suspend -i") end, {description = "Verouille la session avec slock", group = "Lanceurs personnels"})
-- awful.key({ modkey, "Shift" }, "F11", function () awful.util.spawn("/home/taeradan/bin/xrandr-left") end),
-- awful.key({ modkey, "Control" }, "F11", function () awful.util.spawn("/home/taeradan/bin/xrandr-right") end),
)