Changed Configurations to use the assets repo instead of paths in main repo
This commit is contained in:
@ -14,6 +14,7 @@
|
||||
version,
|
||||
system,
|
||||
pam-fprint-grosshack-pkg,
|
||||
cookiez-assets,
|
||||
...
|
||||
}: {
|
||||
#Assign Swap to the PC
|
||||
@ -99,7 +100,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 cookiez-assets;};
|
||||
sharedModules = [inputs.plasma-manager.homeModules.plasma-manager];
|
||||
};
|
||||
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
pkgs,
|
||||
username,
|
||||
project,
|
||||
cookiez-assets,
|
||||
...
|
||||
}: {
|
||||
xdg = {
|
||||
@ -23,7 +24,7 @@
|
||||
categories = ["Network" "InstantMessaging" "Chat"];
|
||||
exec = "vesktop %U";
|
||||
genericName = "Internet Messenger";
|
||||
icon = "/home/${username}/${project}/other/discord.app.png";
|
||||
icon = "${cookiez-assets}/apps/discord.png";
|
||||
name = "Discord";
|
||||
type = "Application";
|
||||
};
|
||||
@ -45,7 +46,7 @@
|
||||
terminal = false;
|
||||
categories = ["System" "TerminalEmulator"];
|
||||
|
||||
icon = "/home/${username}/${project}/other/kitty.app.png";
|
||||
icon = "${cookiez-assets}/apps/kitty.png";
|
||||
};
|
||||
|
||||
desktopEntries."org.kde.kinfocenter" = {
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
project,
|
||||
host,
|
||||
version,
|
||||
cookiez-assets,
|
||||
...
|
||||
}: {
|
||||
# Home Manager needs a bit of information about you and the
|
||||
|
||||
@ -3,6 +3,7 @@
|
||||
inputs,
|
||||
username,
|
||||
project,
|
||||
cookiez-assets,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
@ -17,14 +18,14 @@
|
||||
#"/home/${username}/${project}/other/wallpaper1.png"
|
||||
#"/home/${username}/${project}/other/wallpaper2.png"
|
||||
#"/home/${username}/${project}/other/wallpaper3.png"
|
||||
"/home/${username}/${project}/other/wallpaper4.png"
|
||||
"${cookiez-assets}/wallpapers/pixel-desert.png"
|
||||
];
|
||||
|
||||
wallpaper = [
|
||||
#"eDP-1,/home/${username}/${project}/other/wallpaper1.png"
|
||||
#"eDP-1,/home/${username}/${project}/other/wallpaper2.png"
|
||||
#"eDP-1,/home/${username}/${project}/other/wallpaper3.png"
|
||||
"eDP-1,/home/${username}/${project}/other/wallpaper4.png"
|
||||
"eDP-1,${cookiez-assets}/wallpapers/pixel-desert.png"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user