diff options
Diffstat (limited to 'host')
-rw-r--r-- | host/asterix.nix | 14 | ||||
-rw-r--r-- | host/obelix.nix | 7 |
2 files changed, 21 insertions, 0 deletions
diff --git a/host/asterix.nix b/host/asterix.nix new file mode 100644 index 0000000..7a74307 --- /dev/null +++ b/host/asterix.nix @@ -0,0 +1,14 @@ +{ pkgs, ... }: + +{ + imports = [ + ../gui/default.nix + ]; + + home.packages = let + # only asterix has a 3g modem + modem-manager-gui = import ../gui/pkgs/modem-manager-gui.nix pkgs; + in [ + modem-manager-gui + ]; +} diff --git a/host/obelix.nix b/host/obelix.nix new file mode 100644 index 0000000..bfd3522 --- /dev/null +++ b/host/obelix.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +{ + imports = [ + ../gui/default.nix + ]; +} |