diff options
| author | Grigory Shipunov | 2023-04-29 23:47:19 +0200 |
|---|---|---|
| committer | Grigory Shipunov | 2023-04-29 23:47:19 +0200 |
| commit | cb3beda6b0e984a31ae4d868c98d949691d6e87d (patch) | |
| tree | c15cdad1e749c1663586441626a2dc6043033669 | |
| parent | 3fe247961ffffb29389e69f529ddfacb5d69c6ee (diff) | |
Secure boot misbehaves
| -rw-r--r-- | hosts/toaster/default.nix | 1 | ||||
| -rw-r--r-- | modules/desktop-software.nix | 17 |
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 + ]; +} |
