Merge remote-tracking branch 'origin/main' into ncli-refactor
This commit is contained in:
@ -218,6 +218,10 @@
|
||||
programs = {
|
||||
steam.enable = true;
|
||||
|
||||
gamemode.enable = true;
|
||||
|
||||
gamescope.enable = true;
|
||||
|
||||
nix-index-database.comma.enable = true;
|
||||
|
||||
direnv = {
|
||||
@ -300,7 +304,7 @@
|
||||
users.users.${username} = {
|
||||
isNormalUser = true;
|
||||
description = "Cookiez";
|
||||
extraGroups = ["networkmanager" "wheel" "docker"];
|
||||
extraGroups = ["networkmanager" "wheel" "docker" "gamemode"];
|
||||
packages = with pkgs; [
|
||||
#User Packages Here
|
||||
];
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
username,
|
||||
project,
|
||||
...
|
||||
@ -19,11 +20,13 @@
|
||||
noDisplay = true;
|
||||
};
|
||||
|
||||
dataFile."icons/hicolor/256x256/apps/vencord-custom.png".source = "${inputs.cookiez-assets}/apps/discord.png";
|
||||
|
||||
desktopEntries."discord" = {
|
||||
categories = ["Network" "InstantMessaging" "Chat"];
|
||||
exec = "vesktop %U";
|
||||
genericName = "Internet Messenger";
|
||||
icon = "/home/${username}/${project}/other/discord.app.png";
|
||||
icon = "vencord-custom";
|
||||
name = "Discord";
|
||||
type = "Application";
|
||||
};
|
||||
@ -37,6 +40,8 @@
|
||||
type = "Application";
|
||||
};
|
||||
|
||||
dataFile."icons/hicolor/256x256/apps/kitty-custom.png".source = "${inputs.cookiez-assets}/apps/kitty.png";
|
||||
|
||||
desktopEntries.kitty = {
|
||||
name = "kitty";
|
||||
genericName = "Terminal emulator";
|
||||
@ -45,7 +50,8 @@
|
||||
terminal = false;
|
||||
categories = ["System" "TerminalEmulator"];
|
||||
|
||||
icon = "/home/${username}/${project}/other/kitty.app.png";
|
||||
#icon = "${inputs.cookiez-assets}/apps/kitty.png";
|
||||
icon = "kitty-custom";
|
||||
};
|
||||
|
||||
desktopEntries."org.kde.kinfocenter" = {
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
project,
|
||||
host,
|
||||
version,
|
||||
cookiez-assets,
|
||||
...
|
||||
}: {
|
||||
# Home Manager needs a bit of information about you and the
|
||||
|
||||
@ -13,18 +13,12 @@
|
||||
enable = false;
|
||||
|
||||
settings = {
|
||||
preload = [
|
||||
#"/home/${username}/${project}/other/wallpaper1.png"
|
||||
#"/home/${username}/${project}/other/wallpaper2.png"
|
||||
#"/home/${username}/${project}/other/wallpaper3.png"
|
||||
"/home/${username}/${project}/other/wallpaper4.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"
|
||||
{
|
||||
monitor = "eDP-1";
|
||||
path = "${inputs.cookiez-assets}/wallpapers/pixel-desert.png";
|
||||
fit_mode = "cover"; # optional, defaults to cover
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user