fixing shit

This commit is contained in:
cnst
2024-07-15 22:47:43 +02:00
parent 9c2d060f27
commit 5a37c61562
5 changed files with 29 additions and 48 deletions

30
flake.lock generated
View File

@@ -544,35 +544,6 @@
"type": "github" "type": "github"
} }
}, },
"hyprpaper": {
"inputs": {
"hyprlang": [
"hyprland",
"hyprlang"
],
"nixpkgs": [
"hyprland",
"nixpkgs"
],
"systems": [
"hyprland",
"systems"
]
},
"locked": {
"lastModified": 1719939251,
"narHash": "sha256-N58i+BSqmz9n7WKFY0Q8c27NWetyzbJf/1NtJuNEQLg=",
"owner": "hyprwm",
"repo": "hyprpaper",
"rev": "13fcdd79efe439a81d807572cc4b4737abbad918",
"type": "github"
},
"original": {
"owner": "hyprwm",
"repo": "hyprpaper",
"type": "github"
}
},
"hyprutils": { "hyprutils": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@@ -887,7 +858,6 @@
"hypridle": "hypridle", "hypridle": "hypridle",
"hyprland": "hyprland", "hyprland": "hyprland",
"hyprlock": "hyprlock", "hyprlock": "hyprlock",
"hyprpaper": "hyprpaper",
"lanzaboote": "lanzaboote", "lanzaboote": "lanzaboote",
"nixpkgs": "nixpkgs_3", "nixpkgs": "nixpkgs_3",
"nixpkgs-stable": "nixpkgs-stable_2", "nixpkgs-stable": "nixpkgs-stable_2",

View File

@@ -5,11 +5,13 @@
general = { general = {
disable_loading_bar = true; disable_loading_bar = true;
hide_cursor = false; hide_cursor = false;
no_fade_in = true; no_fade_in = false;
}; };
background = [ background = [
{ {
path = "/src/wallpaper.png"; color = "rgba(000000FF)";
monitor = "";
path = "~/media/images/wallpaper.png";
blur_size = 3; blur_size = 3;
blur_passes = 2; blur_passes = 2;
} }
@@ -32,7 +34,7 @@
hide_input = false; hide_input = false;
rounding = -1; rounding = -1;
check_color = "rgb(204, 136, 34)"; check_color = "rgb(204, 136, 34)";
failed_color = "rgb(204, 34, 34)"; fail_color = "rgb(204, 34, 34)";
} }
]; ];
label = [ label = [
@@ -49,20 +51,20 @@
halign = "center"; halign = "center";
valign = "center"; valign = "center";
} }
{ # {
# Date # # Date
monitor = ""; # monitor = "";
text = "cmd[update:1000] echo '$(date -I)'"; # text = "cmd[update:1000] echo '$(date -I)'";
shadow_passes = 1; # shadow_passes = 1;
shadow_boost = 0.5; # shadow_boost = 0.5;
color = "rgba(FFFFFFFF)"; # color = "rgba(FFFFFFFF)";
font_size = 25; # font_size = 25;
font_family = "Input Mono Compressed"; # font_family = "Input Mono Compressed";
#
position = "0, 280"; # position = "0, 280";
halign = "center"; # halign = "center";
valign = "center"; # valign = "center";
} # }
]; ];
}; };
}; };

View File

@@ -0,0 +1,9 @@
{
programs.corectrl = {
enable = true;
gpuOverclock = {
enable = true;
ppfeaturemask = "0xffffffff";
};
};
}

View File

@@ -5,6 +5,7 @@
./bottles ./bottles
./gamemode ./gamemode
./gamescope ./gamescope
./corectrl
]; ];
environment = { environment = {
systemPackages = with pkgs; [ systemPackages = with pkgs; [

View File

@@ -28,7 +28,6 @@
kernelParams = [ kernelParams = [
"quiet" "quiet"
"splash" "splash"
"amdgpu.ppfeaturemask=0xffffffff"
]; ];
extraModulePackages = []; extraModulePackages = [];
}; };