From cb3beda6b0e984a31ae4d868c98d949691d6e87d Mon Sep 17 00:00:00 2001 From: Grigory Shipunov Date: Sat, 29 Apr 2023 23:47:19 +0200 Subject: [PATCH] Secure boot misbehaves --- hosts/toaster/default.nix | 1 - modules/desktop-software.nix | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 modules/desktop-software.nix 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 + ]; +}