summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrigory Shipunov2023-04-29 23:47:19 +0200
committerGrigory Shipunov2023-04-29 23:47:19 +0200
commitcb3beda6b0e984a31ae4d868c98d949691d6e87d (patch)
treec15cdad1e749c1663586441626a2dc6043033669
parent3fe247961ffffb29389e69f529ddfacb5d69c6ee (diff)
Secure boot misbehaves
-rw-r--r--hosts/toaster/default.nix1
-rw-r--r--modules/desktop-software.nix17
2 files changed, 17 insertions, 1 deletions
diff --git a/hosts/toaster/default.nix b/hosts/toaster/default.nix
index 3f6f078..b196392 100644
--- a/hosts/toaster/default.nix
+++ b/hosts/toaster/default.nix
@@ -5,7 +5,6 @@
./irc.nix
./network.nix
./secrets.nix
- ./secure-boot.nix
./zfs.nix
];
diff --git a/modules/desktop-software.nix b/modules/desktop-software.nix
new file mode 100644
index 0000000..4ebab68
--- /dev/null
+++ b/modules/desktop-software.nix
@@ -0,0 +1,17 @@
+{ pkgs, ... }:
+{
+ environment.systemPackages = with pkgs; [
+ tdesktop
+ fluffychat
+ dino
+ signal-desktop
+ inkscape
+ gimp
+ blender
+ kicad
+ wl-clipboard
+ firefox-wayland
+ tor-browser-bundle-bin
+ ffmpeg-full
+ ];
+}