Commit 3e2ba55af481

Vincent Demeester <vincent@sbr.pm>
2017-01-12 22:32:30
Add an office profile with calibre and libreoffice 👼
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent fe01cd0
Changed files (2)
machine
profiles
machine/honshu.nix
@@ -10,6 +10,7 @@
 			../profiles/laptop.nix
 			../profiles/virtualization.nix
 			../profiles/dockerization.nix
+			../profiles/office.nix
 			../location/home.nix
 			../hardware/dell-latitude-e6540.nix
 			../service/ssh-tunnel.nix
profiles/office.nix
@@ -0,0 +1,8 @@
+{ configs, pkgs, ...}:
+
+{
+	environment.systemPackages = with pkgs; [
+		calibre
+		libreoffice
+	];
+}