Add new modules and configurations for HyprPanel and related components

This commit is contained in:
2025-01-11 22:33:49 +02:00
parent d2f5a6ceba
commit 792c41c296
10 changed files with 242 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
{ inputs, ... }:
{
imports = [ inputs.hyprpanel.homeManagerModules.hyprpanel ];
programs.hyprpanel = {
enable = true;
systemd.enable = true;
overwrite.enable = true;
};
}

View File

@@ -13,6 +13,17 @@
boot.supportedFilesystems = [ "ntfs" ];
boot.plymouth = {
enable = true;
};
boot.initrd.verbose = false;
boot.kernelParams = [
# "quiet"
"splash"
"boot.shell_on_fail"
];
boot.loader = {
efi = {
canTouchEfiVariables = true;

View File

@@ -18,7 +18,10 @@
LC_TIME = "lv_LV.UTF-8";
};
i18n.supportedLocales = [ "en_US.UTF-8" "lv_LV.UTF-8" ];
i18n.supportedLocales = [
"en_US.UTF-8/UTF-8"
"lv_LV.UTF-8/UTF-8"
];
services.xserver.xkb = {
layout = "us";

View File

@@ -13,10 +13,12 @@
substituters = [
"https://hyprland.cachix.org"
"https://ghostty.cachix.org"
"https://hyprpanel.cachix.org"
];
trusted-public-keys = [
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
"ghostty.cachix.org-1:QB389yTa6gTyneehvqG58y0WnHjQOqgnA+wBnpWWxns="
"hyprpanel.cachix.org-1:tYDZEqAUAqgIz+zYwJ5+v5J62AnYqA/WEXv4VHA/XRs="
];
};