chore: split scripts from package
This commit is contained in:
parent
4705a3b248
commit
65965e5859
1 changed files with 42 additions and 40 deletions
|
@ -5,9 +5,6 @@
|
|||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
scripts = import ./scripts { inherit pkgs; };
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
./firefox
|
||||
|
@ -44,46 +41,51 @@ in
|
|||
inherit username;
|
||||
inherit homeDirectory;
|
||||
|
||||
packages = with pkgs; [
|
||||
digikam
|
||||
fragments
|
||||
element-desktop
|
||||
libreoffice
|
||||
loupe
|
||||
gnome.seahorse
|
||||
gimp
|
||||
calibre
|
||||
vlc
|
||||
thunderbird
|
||||
keepassxc
|
||||
gnome.nautilus
|
||||
rofi-power-menu
|
||||
lollypop
|
||||
protonmail-bridge-gui
|
||||
varia
|
||||
packages =
|
||||
let
|
||||
pk = with pkgs; [
|
||||
digikam
|
||||
fragments
|
||||
element-desktop
|
||||
libreoffice
|
||||
loupe
|
||||
gnome.seahorse
|
||||
gimp
|
||||
calibre
|
||||
vlc
|
||||
thunderbird
|
||||
keepassxc
|
||||
gnome.nautilus
|
||||
rofi-power-menu
|
||||
lollypop
|
||||
protonmail-bridge-gui
|
||||
varia
|
||||
|
||||
# Proprietary
|
||||
postman
|
||||
mongodb-compass
|
||||
# Proprietary
|
||||
postman
|
||||
mongodb-compass
|
||||
|
||||
# CLI tools
|
||||
delta
|
||||
fzf
|
||||
jhead
|
||||
fdupes
|
||||
exiftool
|
||||
sshfs
|
||||
zip
|
||||
unzip
|
||||
lazygit
|
||||
fd
|
||||
ripgrep
|
||||
swaybg
|
||||
# CLI tools
|
||||
delta
|
||||
fzf
|
||||
jhead
|
||||
fdupes
|
||||
exiftool
|
||||
sshfs
|
||||
zip
|
||||
unzip
|
||||
lazygit
|
||||
fd
|
||||
ripgrep
|
||||
swaybg
|
||||
];
|
||||
scripts = with import ./scripts { inherit pkgs; }; [
|
||||
screenshot
|
||||
set-background
|
||||
];
|
||||
in
|
||||
scripts ++ pk;
|
||||
|
||||
# Scripts
|
||||
scripts.screenshot
|
||||
scripts.set-background
|
||||
];
|
||||
sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
MOZ_ENABLE_WAYLAND = 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue