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,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;
|
||||
|
|
Loading…
Add table
Reference in a new issue