mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
refactor: programs-base.nix
This commit is contained in:
parent
82b1ef4c27
commit
df17ab0766
@ -28,7 +28,8 @@
|
|||||||
#../../modules/gnome-terminal.nix
|
#../../modules/gnome-terminal.nix
|
||||||
../../modules/blackbox.nix
|
../../modules/blackbox.nix
|
||||||
|
|
||||||
../../modules/programs.nix
|
../../modules/programs-base.nix
|
||||||
|
#../../modules/programs.nix
|
||||||
../../modules/flatpak.nix
|
../../modules/flatpak.nix
|
||||||
../../modules/signal-desktop.nix
|
../../modules/signal-desktop.nix
|
||||||
#../../modules/games.nix
|
#../../modules/games.nix
|
||||||
|
@ -30,6 +30,7 @@
|
|||||||
#../../modules/gnome-terminal.nix
|
#../../modules/gnome-terminal.nix
|
||||||
../../modules/blackbox.nix
|
../../modules/blackbox.nix
|
||||||
|
|
||||||
|
../../modules/programs-base.nix
|
||||||
../../modules/programs.nix
|
../../modules/programs.nix
|
||||||
../../modules/flatpak.nix
|
../../modules/flatpak.nix
|
||||||
../../modules/nextcloud-client.nix
|
../../modules/nextcloud-client.nix
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
#../../modules/gnome-terminal.nix
|
#../../modules/gnome-terminal.nix
|
||||||
../../modules/blackbox.nix
|
../../modules/blackbox.nix
|
||||||
|
|
||||||
|
../../modules/programs-base.nix
|
||||||
../../modules/programs.nix
|
../../modules/programs.nix
|
||||||
../../modules/flatpak.nix
|
../../modules/flatpak.nix
|
||||||
../../modules/ausweisapp.nix
|
../../modules/ausweisapp.nix
|
||||||
|
18
modules/programs-base.nix
Normal file
18
modules/programs-base.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
users.users.yoda = {
|
||||||
|
packages = with pkgs; [
|
||||||
|
btop # Terminal resource monitor / task manager
|
||||||
|
htop # Terminal resource monitor / task manager
|
||||||
|
colmena
|
||||||
|
|
||||||
|
gnome.gnome-tweaks
|
||||||
|
gnome.dconf-editor
|
||||||
|
unstable.resources # Resource monitor / task manager
|
||||||
|
|
||||||
|
#gnome-secrets # Password manager (Native Wayland client), but very slow.
|
||||||
|
keepassxc # Password manager. TODO Wayland: Maybe QT_QPA_PLATFORM defined in ghostwriter.nix fixed blurry fonts?
|
||||||
|
warp # Fast and secure file transfer
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
@ -9,14 +9,9 @@
|
|||||||
# CLI apps
|
# CLI apps
|
||||||
gnumake # make
|
gnumake # make
|
||||||
wget
|
wget
|
||||||
btop # Terminal resource monitor / task manager
|
|
||||||
htop # Terminal resource monitor / task manager
|
|
||||||
killall
|
killall
|
||||||
colmena
|
|
||||||
|
|
||||||
# Graphical apps
|
# Graphical apps
|
||||||
gnome.gnome-tweaks
|
|
||||||
gnome.dconf-editor
|
|
||||||
meld # Diff and merge tool
|
meld # Diff and merge tool
|
||||||
# Rip DVD and Blu-ray; rotate and export videos.
|
# Rip DVD and Blu-ray; rotate and export videos.
|
||||||
# Requires gstreamer with plugins to preview encoded video.
|
# Requires gstreamer with plugins to preview encoded video.
|
||||||
@ -61,9 +56,6 @@
|
|||||||
# Graphical apps
|
# Graphical apps
|
||||||
|
|
||||||
epiphany # Web browser
|
epiphany # Web browser
|
||||||
unstable.resources # Resource monitor / task manager
|
|
||||||
#gnome-secrets # Password manager (Native Wayland client), but very slow.
|
|
||||||
keepassxc # Password manager. TODO Wayland: Maybe QT_QPA_PLATFORM defined in ghostwriter.nix fixed blurry fonts?
|
|
||||||
tartube-yt-dlp # Video downloader (front-end for yt-dlp)
|
tartube-yt-dlp # Video downloader (front-end for yt-dlp)
|
||||||
rnote # Handwritten notes
|
rnote # Handwritten notes
|
||||||
xournalpp # Handwritte notes
|
xournalpp # Handwritte notes
|
||||||
@ -77,7 +69,6 @@
|
|||||||
gnome-solanum # Pomodoro timer
|
gnome-solanum # Pomodoro timer
|
||||||
jameica # Hibiscus plugin -> HBCI online banking. Sparkasse-Nürnberg https://www.willuhn.de/wiki/doku.php?id=support:list:banken:spk#nuernberg.
|
jameica # Hibiscus plugin -> HBCI online banking. Sparkasse-Nürnberg https://www.willuhn.de/wiki/doku.php?id=support:list:banken:spk#nuernberg.
|
||||||
picard # Music tagger by MusicBrainz
|
picard # Music tagger by MusicBrainz
|
||||||
warp # Fast and secure file transfer
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user