nix: update inputs

This commit is contained in:
Rouven Seifert 2023-06-04 12:22:09 +02:00
parent 8f78e1f843
commit 8196d6e741
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
3 changed files with 29 additions and 20 deletions

View file

@ -165,11 +165,11 @@
]
},
"locked": {
"lastModified": 1685721552,
"narHash": "sha256-ifvq/zlO7lck8q+YkC5uom/h8/MVdMcQEldOL3cDQW0=",
"lastModified": 1685865037,
"narHash": "sha256-atwfu0IUL2f6oWFt3KG1uqPTj7DxUoYW7+KVOv+o5DY=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "29519461834c08395b35f840811faf8c23e3b61c",
"rev": "57ed23cd29e7b72518e19d2917e2b2880a94162c",
"type": "github"
},
"original": {
@ -398,11 +398,11 @@
},
"nixpkgs-stable_2": {
"locked": {
"lastModified": 1685215858,
"narHash": "sha256-IRMFoDXA6cYx3ifVw3B2JcC4JrjT5v7tRAx2vro2Ffs=",
"lastModified": 1685758009,
"narHash": "sha256-IT4Z5WGhafrq+xbDTyuKrRPRQ1f+kVOtE+4JU1CHFeo=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "ba6e4ddeb3e8ad3f3e3bec63dafbc9fe558729bb",
"rev": "eaf03591711b46d21abc7082a8ebee4681f9dbeb",
"type": "github"
},
"original": {
@ -414,11 +414,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1685655444,
"narHash": "sha256-6EujQNAeaUkWvpEZZcVF8qSfQrNVWFNNGbUJxv/A5a8=",
"lastModified": 1685836261,
"narHash": "sha256-rpxEPGeW4JZJcH58SQApJUtJ7w78VPtkF6Cut/Pq6Kg=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "e635192892f5abbc2289eaac3a73cdb249abaefd",
"rev": "dd4982554e18b936790da07c4ea2db7c7600f283",
"type": "github"
},
"original": {
@ -465,11 +465,11 @@
]
},
"locked": {
"lastModified": 1685479887,
"narHash": "sha256-Pqzkdt0twDVDI9H4AbRqwJSSMD2HAPpfeAxdL0uJnvs=",
"lastModified": 1685858475,
"narHash": "sha256-6Mq/uZ6CTFAYgrIFeGHHn5LjKmf6tx7zWEjMrUzriPc=",
"owner": "therealr5",
"repo": "purge",
"rev": "88cb576163fa9d00b4d61759ceb6e3075b5e5e82",
"rev": "40909378243fd87588599877616e5bd48d9f79cb",
"type": "github"
},
"original": {
@ -551,11 +551,11 @@
"nixpkgs-stable": "nixpkgs-stable_2"
},
"locked": {
"lastModified": 1685434555,
"narHash": "sha256-aZl0yeaYX3T2L3W3yXOd3S9OfpS+8YUOT2b1KwrSf6E=",
"lastModified": 1685848844,
"narHash": "sha256-Iury+/SVbAwLES76QJSiKFiQDzmf/8Hsq8j54WF2qyw=",
"owner": "Mic92",
"repo": "sops-nix",
"rev": "876846cde9762ae563f018c17993354875e2538e",
"rev": "a522e12ee35e50fa7d902a164a9796e420e6e75b",
"type": "github"
},
"original": {
@ -586,11 +586,11 @@
]
},
"locked": {
"lastModified": 1685460727,
"narHash": "sha256-fOH+Jz688B5NSlvFacF+8l8BmGJrcVt+3B5hOXFOFQU=",
"lastModified": 1685858489,
"narHash": "sha256-Dh/Yme9OUpEIGcWJH+777fbgyJvsxcV97gL7p8+Cxoc=",
"owner": "therealr5",
"repo": "TruckSimulatorBot",
"rev": "e80c43ca57fb142998f6429f6145b38bc80f60f0",
"rev": "8046e8f322ba1dc798d3a812bb950ae4484e6c89",
"type": "github"
},
"original": {

View file

@ -10,7 +10,7 @@
layer = "top";
position = "top";
height = 26;
modules-left = [ "wlr/workspaces" "hyprland/window" "custom/spotifytitle" ];
modules-left = [ "wlr/workspaces" "custom/spotifytitle" "hyprland/window" ];
modules-right = [ "network" "cpu" "temperature" "pulseaudio" "battery" "tray" "clock" ];
network = {
format-wifi = " {essid} ({signalStrength}%)";
@ -145,7 +145,6 @@
}
#custom-spotifytitle.Paused,
#custom-spotifytitle.Stopped,
#custom-spotifytitle.Inactive {
opacity: 0.5;
}

View file

@ -1,9 +1,19 @@
{ pkgs, nix-colors, ... }:
{
# home.packages = with pkgs; [ libsForQt5.qtstyleplugin-kvantum ];
colorScheme = nix-colors.colorSchemes.dracula;
# theme hardcoded to dracula, too lazy to make all this base16
home.sessionVariables.GTK_THEME = "Dracula";
home.sessionVariables.QT_QPA_PLATFORMTHEME = "Dracula";
qt = {
enable = true;
style = {
name = "Dracula";
package = pkgs.dracula-theme;
};
};
gtk = {
enable = true;
theme = {