Compare commits

...

6 Commits

5 changed files with 25 additions and 18 deletions

View File

@@ -2,7 +2,11 @@
{ {
imports = [ imports = [
# recettes
./base/base.nix ./base/base.nix
./desktop/desktop.nix ./desktop/desktop.nix
# moulinette de configuration
./config-generator.nix
]; ];
} }

View File

@@ -9,6 +9,14 @@
./services.nix ./services.nix
# inclusion conditionnelle # inclusion conditionnelle
./config-generator.nix ./activation-manuelle/auto-upgrade.nix
./activation-manuelle/laptop.nix
./activation-manuelle/locate.nix
./activation-manuelle/fail2ban.nix
./activation-manuelle/nix-serve-client.nix
./activation-manuelle/nix-serve-server.nix
./activation-manuelle/print.nix
./activation-manuelle/swap.nix
./activation-manuelle/users.nix
]; ];
} }

View File

@@ -9,19 +9,7 @@ let
host = config.networking.hostName; host = config.networking.hostName;
in in
{ {
imports = [
./activation-manuelle/auto-upgrade.nix
./activation-manuelle/laptop.nix
./activation-manuelle/locate.nix
./activation-manuelle/fail2ban.nix
./activation-manuelle/nix-serve-client.nix
./activation-manuelle/nix-serve-server.nix
./activation-manuelle/print.nix
./activation-manuelle/swap.nix
./activation-manuelle/users.nix
];
###### interface ###### interface
options = { options = {
@@ -171,6 +159,10 @@ in
isPrunetwork = true; isPrunetwork = true;
isServer = true; isServer = true;
}; };
r6d.config-generator = {
docker = true;
};
}) })
(mkIf comp.isRadx { (mkIf comp.isRadx {
r6d.profiles = { r6d.profiles = {

View File

@@ -35,9 +35,9 @@ mkIf profiles.isDesktop {
graphviz # dot, neato : traçage de graphes (carré, rond) graphviz # dot, neato : traçage de graphes (carré, rond)
jekyll # générateur statique de site web jekyll # générateur statique de site web
pandoc pandoc
#texLiveFull # distribution LaTeX texLiveFull # distribution LaTeX
texLive # distribution LaTeX de base #texLive # distribution LaTeX de base
texLiveBeamer # paquets et extensions pour Beamer #texLiveBeamer # paquets et extensions pour Beamer
texLiveModerncv # paquets pour la classe Modern CV #texLiveModerncv # paquets pour la classe Modern CV
]; ];
} }

View File

@@ -11,7 +11,10 @@ mkIf profiles.isDesktop {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# Gestion de données géographiques # Gestion de données géographiques
expat
gpsbabel # pour convettir les données des GPS
josm # outil de contribution à OpenStreetMap josm # outil de contribution à OpenStreetMap
qgis # client lourd de manipulation de données géographiques
viking # analyse de topo, gestion de données GPS viking # analyse de topo, gestion de données GPS
]; ];
} }