refactor(configs): remake some of my configs

This commit is contained in:
Artur Manuel 2025-02-04 20:12:54 +00:00
commit 24c925ecaf
6 changed files with 26 additions and 32 deletions

26
LICENSE
View file

@ -1,19 +1,13 @@
Copyright (c) 2024 Artur Manuel <balkenix@outlook.com> Copyright 2025 Artur Manuel <balkenix@outlook.com>
Permission is hereby granted, free of charge, to any person obtaining a copy Licensed under the Apache License, Version 2.0 (the "License");
of this software and associated documentation files (the "Software"), to deal you may not use this file except in compliance with the License.
in the Software without restriction, including without limitation the rights You may obtain a copy of the License at
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in http://www.apache.org/licenses/LICENSE-2.0
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR Unless required by applicable law or agreed to in writing, software
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, distributed under the License is distributed on an "AS IS" BASIS,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER See the License for the specific language governing permissions and
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, limitations under the License.
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

14
flake.lock generated
View file

@ -9,11 +9,11 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1738675414, "lastModified": 1738695322,
"narHash": "sha256-DwKipTgF2DEyNm6+Rj6FXg0DbNNNbt+h4fj9aTO4Q68=", "narHash": "sha256-YF3xLERHt3hwzUg+d6SL634sE5Q65Nam7V1SwTlqxH8=",
"owner": "chaotic-cx", "owner": "chaotic-cx",
"repo": "nyx", "repo": "nyx",
"rev": "59029b0faeee6d2d5284af29830d85fb2caa30ee", "rev": "888cff8a6485296ae11cec13cc6f989f9c39aa23",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -207,11 +207,11 @@
"treefmt": "treefmt" "treefmt": "treefmt"
}, },
"locked": { "locked": {
"lastModified": 1737045336, "lastModified": 1738699636,
"narHash": "sha256-0LiXE5Z7V3gKt2BfZokhnK5GOoCIkLpFoONEucFASv8=", "narHash": "sha256-oboLj7yQAQlaJLSV8OpVpYHErLOVKST5FXtT+cKIjFQ=",
"ref": "master", "ref": "master",
"rev": "7b8af02bcc2d4d56ac09b2de2179de7453925d48", "rev": "0a3c3ddf146a74c08e8fd3821e53e2c7d7ac2de2",
"revCount": 4, "revCount": 5,
"type": "git", "type": "git",
"url": "https://codeberg.org/amadaluzia/hetch.git" "url": "https://codeberg.org/amadaluzia/hetch.git"
}, },

View file

@ -101,7 +101,7 @@
use-cgroups = true; use-cgroups = true;
}; };
boot.initrd.kernelModules = ["amdgpu", "sha256", "sha512"]; boot.initrd.kernelModules = ["amdgpu" "sha256" "sha512"];
# Processor settings for AMD # Processor settings for AMD
hardware.cpu.amd = { hardware.cpu.amd = {

View file

@ -38,7 +38,7 @@
# Position the notification in the top right corner # Position the notification in the top right corner
origin = top-right origin = top-right
offset = (10, 10) offset = (9, 9)
# Scale factor. It is auto-detected if value is 0. # Scale factor. It is auto-detected if value is 0.
scale = 0 scale = 0
@ -92,20 +92,20 @@
# notifications. # notifications.
# Set to 0 to disable. # Set to 0 to disable.
# If gap_size is greater than 0, this setting will be ignored. # If gap_size is greater than 0, this setting will be ignored.
separator_height = 2 separator_height = 0
# Padding between text and separator. # Padding between text and separator.
padding = 8 padding = 4
# Horizontal padding. # Horizontal padding.
horizontal_padding = 8 horizontal_padding = 4
# Padding between text and icon. # Padding between text and icon.
text_icon_padding = 0 text_icon_padding = 0
# Defines width in pixels of frame around the notification window. # Defines width in pixels of frame around the notification window.
# Set to 0 to disable. # Set to 0 to disable.
frame_width = 3 frame_width = 1
# Defines color of the frame around the notification window. # Defines color of the frame around the notification window.
frame_color = "#e5e9f0" frame_color = "#e5e9f0"
@ -114,7 +114,7 @@
# If value is greater than 0, separator_height will be ignored and a border # If value is greater than 0, separator_height will be ignored and a border
# of size frame_width will be drawn around each notification instead. # of size frame_width will be drawn around each notification instead.
# Click events on gaps do not currently propagate to applications below. # Click events on gaps do not currently propagate to applications below.
gap_size = 0 gap_size = 4
# Define a color for the separator. # Define a color for the separator.
# possible values are: # possible values are:

View file

@ -272,7 +272,7 @@ window-rule {
// Example: enable rounded corners for all windows. // Example: enable rounded corners for all windows.
// (This example rule is commented out with a "/-" in front.) // (This example rule is commented out with a "/-" in front.)
window-rule { /-window-rule {
geometry-corner-radius 6 geometry-corner-radius 6
clip-to-geometry true clip-to-geometry true
} }

View file

@ -1,3 +1,3 @@
:root { :root {
--font: "Monospace"; --font: "Monospace";
} }