Deleted hyprpaper and replaced it with awww. Also deleted self declared niri systemd services, as they arent needed with running commands at startup

This commit is contained in:
2026-05-29 21:51:48 +02:00
parent 3cf1f4f11f
commit f04a72f19d
8 changed files with 89 additions and 72 deletions

View File

@ -14,6 +14,7 @@
version,
system,
pam-fprint-grosshack-pkg,
awwwPkg,
...
}: {
#Assign Swap to the PC
@ -110,7 +111,7 @@
useUserPackages = true;
users.${username} = ./home.nix;
backupFileExtension = "backup"; # Automatically backs up conflicting files during activation
extraSpecialArgs = {inherit inputs username project version system host;};
extraSpecialArgs = {inherit inputs username project version system host awwwPkg;};
sharedModules = [inputs.plasma-manager.homeModules.plasma-manager];
};

View File

@ -1,17 +0,0 @@
{
config,
inputs,
pkgs,
...
}: {
imports = [
];
home-manager.sharedModules = [
./home.nix
];
environment.systemPackages = with pkgs; [
hyprpaper
];
}

View File

@ -1,26 +0,0 @@
{
pkgs,
inputs,
username,
project,
...
}: {
imports = [
];
services = {
hyprpaper = {
enable = false;
settings = {
wallpaper = [
{
monitor = "eDP-1";
path = "${inputs.cookiez-assets}/wallpapers/pixel-desert.png";
fit_mode = "cover"; # optional, defaults to cover
}
];
};
};
};
}