Aktualizacja zależności i poprawki w konfiguracji Nix

- Zaktualizowano plik `flake.lock` do najnowszych wersji zależności.
- Uproszczono `stylix.nix`, usuwając zbędne komentarze i parametry.
- W `programs.librewolf.nix` zastąpiono przypisanie ustawień przez `lib.mkDefault`.
- Dodano `librewolf.profileNames` w `styles.nix`, co może poprawić konfigurację Librewolf.
This commit is contained in:
installer
2025-03-19 02:26:55 +01:00
parent d75f2996e3
commit 508da275c4
4 changed files with 14 additions and 16 deletions

18
flake.lock generated
View File

@@ -96,11 +96,11 @@
}, },
"locked": { "locked": {
"dir": "pkgs/firefox-addons", "dir": "pkgs/firefox-addons",
"lastModified": 1742097805, "lastModified": 1742327995,
"narHash": "sha256-N3/7llBZ93Itf7ndnNtEm7lPoMqSC57B/PNaMB6cL1Q=", "narHash": "sha256-cvqCqT7op8uRCIPUYK8CPJbRRmKytFtOzHqomMyO7u8=",
"owner": "rycee", "owner": "rycee",
"repo": "nur-expressions", "repo": "nur-expressions",
"rev": "5a0ac85616aa6b166ea715a41bc1255bb802b189", "rev": "d91a2ea080804c3a9213d6e460e8cff68cfacf8d",
"type": "gitlab" "type": "gitlab"
}, },
"original": { "original": {
@@ -287,11 +287,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1741955947, "lastModified": 1742326330,
"narHash": "sha256-2lbURKclgKqBNm7hVRtWh0A7NrdsibD0EaWhahUVhhY=", "narHash": "sha256-Tumt3tcMXJniSh7tw2gW+WAnVLeB3WWm+E+yYFnLBXo=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "4e12151c9e014e2449e0beca2c0e9534b96a26b4", "rev": "22a36aa709de7dd42b562a433b9cefecf104a6ee",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -375,11 +375,11 @@
"tinted-zed": "tinted-zed" "tinted-zed": "tinted-zed"
}, },
"locked": { "locked": {
"lastModified": 1742040559, "lastModified": 1742299802,
"narHash": "sha256-Hb3aw00C1/5ORiTCASwMd8vcLAl/GNJfyjXZyl/EKpc=", "narHash": "sha256-enlpX8hwrfmjv/dHTKWzAB5Cwt1Kr6+ptikjX3Ob+FY=",
"owner": "danth", "owner": "danth",
"repo": "stylix", "repo": "stylix",
"rev": "bcc674f1994396137438bac9d905971453d33b12", "rev": "ff9ae322bcaeccabc65812390000276455331123",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -1,11 +1,6 @@
{ {pkgs, ...}: {
pkgs,
# host,
...
}: {
# Styling Options # Styling Options
stylix = { stylix = {
# targets.librewolf.profileNames = ["${host}"];
enable = true; enable = true;
image = ../../../config/wallpapers/attack-on-titan-mikasa-ackerman.jpg; image = ../../../config/wallpapers/attack-on-titan-mikasa-ackerman.jpg;
# base16Scheme = { # base16Scheme = {

View File

@@ -1,5 +1,6 @@
{ {
pkgs, pkgs,
lib,
inputs, inputs,
system, system,
host, host,
@@ -16,7 +17,7 @@
id = 0; id = 0;
isDefault = true; isDefault = true;
name = "${host}"; name = "${host}";
settings = { settings = lib.mkDefault {
# Preferences (about:config) # Preferences (about:config)
"general.useragent.locale" = "pl"; "general.useragent.locale" = "pl";
"intl.locale.requested" = "pl,en-US"; "intl.locale.requested" = "pl,en-US";

View File

@@ -1,11 +1,13 @@
{ {
pkgs, pkgs,
lib, lib,
host,
... ...
}: { }: {
# Styling Options # Styling Options
stylix = { stylix = {
targets = { targets = {
librewolf.profileNames = ["${host}"];
waybar = { waybar = {
enable = false; enable = false;
}; };