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,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
|
||||||
scripts = import ./scripts { inherit pkgs; };
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./firefox
|
./firefox
|
||||||
|
@ -44,7 +41,9 @@ in
|
||||||
inherit username;
|
inherit username;
|
||||||
inherit homeDirectory;
|
inherit homeDirectory;
|
||||||
|
|
||||||
packages = with pkgs; [
|
packages =
|
||||||
|
let
|
||||||
|
pk = with pkgs; [
|
||||||
digikam
|
digikam
|
||||||
fragments
|
fragments
|
||||||
element-desktop
|
element-desktop
|
||||||
|
@ -79,11 +78,14 @@ in
|
||||||
fd
|
fd
|
||||||
ripgrep
|
ripgrep
|
||||||
swaybg
|
swaybg
|
||||||
|
|
||||||
# Scripts
|
|
||||||
scripts.screenshot
|
|
||||||
scripts.set-background
|
|
||||||
];
|
];
|
||||||
|
scripts = with import ./scripts { inherit pkgs; }; [
|
||||||
|
screenshot
|
||||||
|
set-background
|
||||||
|
];
|
||||||
|
in
|
||||||
|
scripts ++ pk;
|
||||||
|
|
||||||
sessionVariables = {
|
sessionVariables = {
|
||||||
EDITOR = "nvim";
|
EDITOR = "nvim";
|
||||||
MOZ_ENABLE_WAYLAND = 1;
|
MOZ_ENABLE_WAYLAND = 1;
|
||||||
|
|
Loading…
Add table
Reference in a new issue