Merge branch 'main' of ssh://git.home/megamanmalte/nixos

This commit is contained in:
Malte Tammena 2024-11-08 11:04:00 +01:00
commit 21cf77412d
2 changed files with 17 additions and 1 deletions

View file

@ -87,6 +87,15 @@
steam-rom-manager steam-rom-manager
boilr boilr
electron electron
# Virtual keyboard
libsForQt5.qt5.qtvirtualkeyboard
maliit-keyboard
maliit-framework
# For EmuDeck installer
lsb-release
zenity
]; ];
security.sudo.extraRules = [ security.sudo.extraRules = [

View file

@ -1,7 +1,6 @@
{ {
pkgs, pkgs,
lib, lib,
config,
nixosConfig, nixosConfig,
... ...
}: let }: let
@ -42,6 +41,13 @@
}; };
nnnIcons = pkgs.nnn.override {withNerdIcons = true;}; nnnIcons = pkgs.nnn.override {withNerdIcons = true;};
whatsappDesktop = pkgs.writeShellApplication {
name = "whatsapp-desktop";
text = ''
${lib.getExe pkgs.electron} -- "https://web.whatsapp.com"
'';
};
in { in {
imports = [ imports = [
./modules/git.nix ./modules/git.nix
@ -119,6 +125,7 @@ in {
unison unison
vlc vlc
vscode vscode
whatsappDesktop
wev wev
xdg_utils xdg_utils
xournalpp xournalpp