chore: split scripts from package

This commit is contained in:
Nydragon 2024-05-17 03:25:18 +09:00
parent 4705a3b248
commit 65965e5859
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209

View file

@ -5,9 +5,6 @@
pkgs,
...
}:
let
scripts = import ./scripts { inherit pkgs; };
in
{
imports = [
./firefox
@ -44,7 +41,9 @@ in
inherit username;
inherit homeDirectory;
packages = with pkgs; [
packages =
let
pk = with pkgs; [
digikam
fragments
element-desktop
@ -79,11 +78,14 @@ in
fd
ripgrep
swaybg
# Scripts
scripts.screenshot
scripts.set-background
];
scripts = with import ./scripts { inherit pkgs; }; [
screenshot
set-background
];
in
scripts ++ pk;
sessionVariables = {
EDITOR = "nvim";
MOZ_ENABLE_WAYLAND = 1;