mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
profiles/desktop-*: init from legacy
This commit is contained in:
parent
d5b161e0c1
commit
259054a28b
7 changed files with 98 additions and 78 deletions
50
profiles/desktop-apps/default.nix
Normal file
50
profiles/desktop-apps/default.nix
Normal file
|
@ -0,0 +1,50 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
cfg = config.my.profiles.desktop-apps;
|
||||
in
|
||||
{
|
||||
options.my.profiles.desktop-apps = with lib; {
|
||||
enable = mkEnableOption "desktop-apps profile";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
evince
|
||||
firefox
|
||||
ghostwriter
|
||||
(gimp-with-plugins.override {
|
||||
plugins = with gimpPlugins; [
|
||||
resynthesizer
|
||||
];
|
||||
})
|
||||
keepassxc
|
||||
libreoffice
|
||||
(mpv.override {
|
||||
scripts = with mpvScripts; [
|
||||
convert
|
||||
mpris
|
||||
simple-mpv-webui
|
||||
sponsorblock
|
||||
];
|
||||
})
|
||||
newsflash
|
||||
rhythmbox
|
||||
tdesktop
|
||||
thunderbird
|
||||
vlc
|
||||
wayvnc
|
||||
zathura
|
||||
zeal
|
||||
# terminal
|
||||
socat
|
||||
sshuttle
|
||||
libnotify
|
||||
keychain
|
||||
];
|
||||
|
||||
programs.wireshark = {
|
||||
enable = true;
|
||||
package = pkgs.wireshark; # enable the gui
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue