new wallpaperthingie
This commit is contained in:
+3
-17
@@ -786,29 +786,15 @@ let
|
|||||||
# Define source and destination paths
|
# Define source and destination paths
|
||||||
source_path = "${flakeRoot}/assets/hyprland/wallpaperstuff";
|
source_path = "${flakeRoot}/assets/hyprland/wallpaperstuff";
|
||||||
destination_path = "${config.home.homeDirectory}/Droidnix/wallpaperstuff";
|
destination_path = "${config.home.homeDirectory}/Droidnix/wallpaperstuff";
|
||||||
script_path = "${flakeRoot}/assets/hyprland/scripts/copy-wallpapers.sh";
|
script_path = "${flakeRoot}/assets/hyprland/scripts/copy_wallpaperstuff.sh";
|
||||||
wallpaper_conf = "${flakeRoot}/assets/hyprland/wallpaperstuff/wallpaper.conf";
|
wallpaper_conf = "${flakeRoot}/assets/hyprland/wallpaperstuff/wallpaper.conf";
|
||||||
|
|
||||||
# Define the script in the let block
|
|
||||||
copy_wallpapers_script = ''
|
|
||||||
Echo "hoi"
|
|
||||||
'';
|
|
||||||
|
|
||||||
# Print the script contents during the build
|
|
||||||
traceScript = builtins.trace (lib.concatStringsSep "\n" [
|
|
||||||
"=== Contents of copy-wallpapers.sh ==="
|
|
||||||
copy_wallpapers_script
|
|
||||||
"=== End of copy-wallpapers.sh ==="
|
|
||||||
]);
|
|
||||||
in {
|
in {
|
||||||
options = {
|
options = {
|
||||||
wallpaper.enable = lib.mkEnableOption "Wallpaper setup";
|
wallpaper.enable = lib.mkEnableOption "Wallpaper setup";
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf config.wallpaper.enable {
|
config = lib.mkIf config.wallpaper.enable {
|
||||||
|
# Ensure the script is executable
|
||||||
# Use a script to copy all files from source to destination
|
|
||||||
home-manager.users.${config.home.username}.home.file."${script_path}".text = copy_wallpapers_script;
|
|
||||||
home-manager.users.${config.home.username}.home.file."${script_path}".executable = true;
|
home-manager.users.${config.home.username}.home.file."${script_path}".executable = true;
|
||||||
|
|
||||||
# Run the script on activation
|
# Run the script on activation
|
||||||
@@ -817,6 +803,7 @@ in {
|
|||||||
cat "${script_path}"
|
cat "${script_path}"
|
||||||
"${script_path}"
|
"${script_path}"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# Install wpaperd
|
# Install wpaperd
|
||||||
home-manager.users.${config.home.username}.home.packages = [ pkgs.wpaperd ];
|
home-manager.users.${config.home.username}.home.packages = [ pkgs.wpaperd ];
|
||||||
|
|
||||||
@@ -824,7 +811,6 @@ in {
|
|||||||
home-manager.users.${config.home.username}.home.file."${config.home.homeDirectory}/.config/wpaperd/config.toml".text = builtins.readFile wallpaper_conf;
|
home-manager.users.${config.home.username}.home.file."${config.home.homeDirectory}/.config/wpaperd/config.toml".text = builtins.readFile wallpaper_conf;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** =generated/hyprland/notifications/top.nix=
|
** =generated/hyprland/notifications/top.nix=
|
||||||
|
|||||||
+17
@@ -0,0 +1,17 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
# Source and destination directories
|
||||||
|
SOURCE_DIR="../wallpaperstuff"
|
||||||
|
DEST_DIR="$HOME/Droidnix/"
|
||||||
|
# Check if source directory exists
|
||||||
|
if [ ! -d "$SOURCE_DIR" ]; then
|
||||||
|
echo "Error: Source directory $SOURCE_DIR does not exist."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [ ! -d "$DEST_DIR" ]; then
|
||||||
|
mkdir -p $DEST_DIR
|
||||||
|
fi
|
||||||
|
# Use rsync to copy files, overwriting symlinks and existing files
|
||||||
|
# --no-group --no-owner preserves your user ownership
|
||||||
|
rsync -av --no-group --no-owner "$SOURCE_DIR/" "$DEST_DIR/"
|
||||||
|
echo "Config files copied from $SOURCE_DIR to $DEST_DIR."
|
||||||
@@ -4,29 +4,15 @@ let
|
|||||||
# Define source and destination paths
|
# Define source and destination paths
|
||||||
source_path = "${flakeRoot}/assets/hyprland/wallpaperstuff";
|
source_path = "${flakeRoot}/assets/hyprland/wallpaperstuff";
|
||||||
destination_path = "${config.home.homeDirectory}/Droidnix/wallpaperstuff";
|
destination_path = "${config.home.homeDirectory}/Droidnix/wallpaperstuff";
|
||||||
script_path = "${flakeRoot}/assets/hyprland/scripts/copy-wallpapers.sh";
|
script_path = "${flakeRoot}/assets/hyprland/scripts/copy_wallpaperstuff.sh";
|
||||||
wallpaper_conf = "${flakeRoot}/assets/hyprland/wallpaperstuff/wallpaper.conf";
|
wallpaper_conf = "${flakeRoot}/assets/hyprland/wallpaperstuff/wallpaper.conf";
|
||||||
|
|
||||||
# Define the script in the let block
|
|
||||||
copy_wallpapers_script = ''
|
|
||||||
Echo "hoi"
|
|
||||||
'';
|
|
||||||
|
|
||||||
# Print the script contents during the build
|
|
||||||
traceScript = builtins.trace (lib.concatStringsSep "\n" [
|
|
||||||
"=== Contents of copy-wallpapers.sh ==="
|
|
||||||
copy_wallpapers_script
|
|
||||||
"=== End of copy-wallpapers.sh ==="
|
|
||||||
]);
|
|
||||||
in {
|
in {
|
||||||
options = {
|
options = {
|
||||||
wallpaper.enable = lib.mkEnableOption "Wallpaper setup";
|
wallpaper.enable = lib.mkEnableOption "Wallpaper setup";
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf config.wallpaper.enable {
|
config = lib.mkIf config.wallpaper.enable {
|
||||||
|
# Ensure the script is executable
|
||||||
# Use a script to copy all files from source to destination
|
|
||||||
home-manager.users.${config.home.username}.home.file."${script_path}".text = copy_wallpapers_script;
|
|
||||||
home-manager.users.${config.home.username}.home.file."${script_path}".executable = true;
|
home-manager.users.${config.home.username}.home.file."${script_path}".executable = true;
|
||||||
|
|
||||||
# Run the script on activation
|
# Run the script on activation
|
||||||
@@ -35,6 +21,7 @@ in {
|
|||||||
cat "${script_path}"
|
cat "${script_path}"
|
||||||
"${script_path}"
|
"${script_path}"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# Install wpaperd
|
# Install wpaperd
|
||||||
home-manager.users.${config.home.username}.home.packages = [ pkgs.wpaperd ];
|
home-manager.users.${config.home.username}.home.packages = [ pkgs.wpaperd ];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user