découpage des applications déjà classées dans différents fichiers
This commit is contained in:
23
app-bureautique.nix
Normal file
23
app-bureautique.nix
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
{ config, libs, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# Bureautique
|
||||||
|
aspell
|
||||||
|
dia
|
||||||
|
freemind
|
||||||
|
gnumeric
|
||||||
|
graphviz
|
||||||
|
kde5.okular
|
||||||
|
lyx
|
||||||
|
mcomix
|
||||||
|
pandoc
|
||||||
|
pdfpc
|
||||||
|
qpdfview
|
||||||
|
texLiveFull
|
||||||
|
zim
|
||||||
|
];
|
||||||
|
}
|
||||||
14
app-cao.nix
Normal file
14
app-cao.nix
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{ config, libs, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# CAO
|
||||||
|
freecad
|
||||||
|
fritzing
|
||||||
|
kicad
|
||||||
|
qucs
|
||||||
|
];
|
||||||
|
}
|
||||||
20
app-client-internet.nix
Normal file
20
app-client-internet.nix
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{ config, libs, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# Clients Internet
|
||||||
|
chromium
|
||||||
|
clawsMail
|
||||||
|
firefox
|
||||||
|
kde5.quasselClient
|
||||||
|
mutt
|
||||||
|
mumble
|
||||||
|
pidgin
|
||||||
|
python27Packages.turses
|
||||||
|
thunderbird
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
20
app-dev.nix
Normal file
20
app-dev.nix
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{ config, libs, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# Développement
|
||||||
|
cargo
|
||||||
|
cloc
|
||||||
|
ghc
|
||||||
|
git-cola
|
||||||
|
idea.idea-community
|
||||||
|
mercurial
|
||||||
|
meld
|
||||||
|
rustPlatform.rustc
|
||||||
|
stack
|
||||||
|
subversion
|
||||||
|
];
|
||||||
|
}
|
||||||
23
app-multimedia.nix
Normal file
23
app-multimedia.nix
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
{ config, libs, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# Multimedia
|
||||||
|
audacity
|
||||||
|
beep
|
||||||
|
cmus
|
||||||
|
easytag
|
||||||
|
kde4.digikam
|
||||||
|
gimp
|
||||||
|
inkscape
|
||||||
|
paprefs
|
||||||
|
pavucontrol
|
||||||
|
picard
|
||||||
|
smplayer
|
||||||
|
vlc
|
||||||
|
vorbis-tools
|
||||||
|
];
|
||||||
|
}
|
||||||
20
app-network.nix
Normal file
20
app-network.nix
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{ config, libs, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# network toolbox
|
||||||
|
arp-scan
|
||||||
|
iperf
|
||||||
|
iptraf-ng
|
||||||
|
nload
|
||||||
|
openvpn
|
||||||
|
quagga
|
||||||
|
telnet
|
||||||
|
tinc
|
||||||
|
whois
|
||||||
|
wireshark
|
||||||
|
];
|
||||||
|
}
|
||||||
77
desktop.nix
77
desktop.nix
@@ -2,80 +2,15 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./app-bureautique.nix
|
||||||
|
./app-cao.nix
|
||||||
|
./app-client-internet.nix
|
||||||
|
./app-dev.nix
|
||||||
|
./app-multimedia.nix
|
||||||
|
./app-network.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
# network toolbox
|
|
||||||
arp-scan
|
|
||||||
iperf
|
|
||||||
iptraf-ng
|
|
||||||
nload
|
|
||||||
openvpn
|
|
||||||
quagga
|
|
||||||
telnet
|
|
||||||
tinc
|
|
||||||
whois
|
|
||||||
wireshark
|
|
||||||
|
|
||||||
# Multimedia
|
|
||||||
audacity
|
|
||||||
beep
|
|
||||||
cmus
|
|
||||||
easytag
|
|
||||||
kde4.digikam
|
|
||||||
gimp
|
|
||||||
inkscape
|
|
||||||
paprefs
|
|
||||||
pavucontrol
|
|
||||||
picard
|
|
||||||
smplayer
|
|
||||||
vlc
|
|
||||||
vorbis-tools
|
|
||||||
|
|
||||||
# Clients Internet
|
|
||||||
chromium
|
|
||||||
clawsMail
|
|
||||||
firefox
|
|
||||||
kde5.quasselClient
|
|
||||||
mutt
|
|
||||||
mumble
|
|
||||||
pidgin
|
|
||||||
python27Packages.turses
|
|
||||||
thunderbird
|
|
||||||
|
|
||||||
# Bureautique
|
|
||||||
aspell
|
|
||||||
dia
|
|
||||||
freemind
|
|
||||||
gnumeric
|
|
||||||
graphviz
|
|
||||||
kde5.okular
|
|
||||||
lyx
|
|
||||||
mcomix
|
|
||||||
pandoc
|
|
||||||
pdfpc
|
|
||||||
qpdfview
|
|
||||||
texLiveFull
|
|
||||||
zim
|
|
||||||
|
|
||||||
# Développement
|
|
||||||
cargo
|
|
||||||
cloc
|
|
||||||
ghc
|
|
||||||
git-cola
|
|
||||||
idea.idea-community
|
|
||||||
mercurial
|
|
||||||
meld
|
|
||||||
rustPlatform.rustc
|
|
||||||
stack
|
|
||||||
subversion
|
|
||||||
|
|
||||||
# CAO
|
|
||||||
freecad
|
|
||||||
fritzing
|
|
||||||
kicad
|
|
||||||
qucs
|
|
||||||
|
|
||||||
cowsay
|
cowsay
|
||||||
curlftpfs
|
curlftpfs
|
||||||
docker
|
docker
|
||||||
|
|||||||
Reference in New Issue
Block a user