chore(deps): update flake deps

This commit is contained in:
dusk 2021-05-14 01:35:10 +03:00
parent 0aafde3063
commit b574740ca3
Signed by: dusk
GPG Key ID: 1D8F8FAF2294D6EA
3 changed files with 22 additions and 19 deletions

View File

@ -79,11 +79,11 @@
"utils": "utils_2" "utils": "utils_2"
}, },
"locked": { "locked": {
"lastModified": 1620802580, "lastModified": 1620861197,
"narHash": "sha256-GQZhfo1XzI+uRkN9oKj1n2WR9+0MffBBFxxHNiBNeN4=", "narHash": "sha256-Gpyi/UWgYmI9flxf0lP7BHf2SsVckEm3RTgLYbPnr/g=",
"owner": "divnix", "owner": "divnix",
"repo": "devlib", "repo": "devlib",
"rev": "58ce1b81b77f0589d5c7854ce077a5a586dcb76f", "rev": "b55805c738e496bc9567b311ff80e795443dfba5",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -191,11 +191,11 @@
}, },
"latest": { "latest": {
"locked": { "locked": {
"lastModified": 1620816796, "lastModified": 1620942579,
"narHash": "sha256-aSvIipT/ndA6GOi8sn4dJ7pJMJ0HNn/bhGzOt+30BHk=", "narHash": "sha256-Mg+liMXvZ5pKpexvM8c4DNpLAt1NwgTfaqtoPIPk1ig=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8a0c5da648702f4620e3a2926f48b38dd1d86562", "rev": "98352e54399b576d783ccfca595919e5ad1ae2b8",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -267,11 +267,11 @@
}, },
"nixos": { "nixos": {
"locked": { "locked": {
"lastModified": 1620387763, "lastModified": 1620901170,
"narHash": "sha256-cR6e92q0fMMol0K5a+e472F2ojjEoaEighs51pKF99I=", "narHash": "sha256-hsJnA0fH6gGzj9KOoolUR+8mw+wNAJC/2SxjZsEq1AI=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "ae1c8ede09b53007ba9b3c32f926c9c03547ae8b", "rev": "d1601a40c48426ae460eede1675fd1d6ee23e198",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -282,11 +282,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1620741111, "lastModified": 1620893076,
"narHash": "sha256-PoiORYXwunS/xUGAI0T21D1xCNYJVl+xsxYCaBEKE7U=", "narHash": "sha256-nG54zqew1hSRG4jUsPGNlhl9Sy9Vl/8OLxGR2oMB4Bk=",
"owner": "nixos", "owner": "nixos",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "02f067b234576a08522cffc8f5fa829db9b425cf", "rev": "936e4649098d6a5e0762058cb7687be1b2d90550",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -328,11 +328,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1620799450, "lastModified": 1620943888,
"narHash": "sha256-eGnmlW2yAtIMC22BJ3wEUfLfqgBLDhi/blq9h38TOas=", "narHash": "sha256-PEsFurhY+6sW4Q5jAvzRAA3TKhPo/H7dEAWu8iiZUPs=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "a8300533f914711414f152bd6285a6212f78d260", "rev": "58b1ff81fdc33aeab73db785f86670ccd235beab",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -2,7 +2,7 @@ final: prev: {
hikari = prev.hikari.overrideAttrs (old: { hikari = prev.hikari.overrideAttrs (old: {
src = prev.fetchzip { src = prev.fetchzip {
url = "https://hub.darcs.net/raichoo/hikari/dist/hikari.zip"; url = "https://hub.darcs.net/raichoo/hikari/dist/hikari.zip";
sha256 = "sha256-c7i/lekoS8FcsAHwXUw5IojC1xWS+sNeLVOzMf+dA5Q="; sha256 = "sha256-uEtmeQKg5II+Wy10YQCtId/iKnsV1hnz7PV6lOVqXzM=";
}; };
buildInputs = old.buildInputs ++ [ prev.pandoc ]; buildInputs = old.buildInputs ++ [ prev.pandoc ];
}); });

View File

@ -42,14 +42,14 @@ in
enableKwallet = false; enableKwallet = false;
}; };
services = { services = {
gnome3 = { gnome = {
gnome-keyring.enable = true; gnome-keyring.enable = true;
}; };
xserver = { xserver = {
enable = true; enable = true;
desktopManager = { desktopManager = {
plasma5.enable = false; plasma5.enable = false;
gnome3.enable = false; gnome.enable = false;
xterm.enable = false; xterm.enable = false;
}; };
displayManager = { displayManager = {
@ -376,7 +376,10 @@ in
extraSessionCommands = extraEnv; extraSessionCommands = extraEnv;
wrapperFeatures.gtk = true; wrapperFeatures.gtk = true;
config = { config = {
inherit fonts; fonts = {
names = [ font ];
size = fontSize + 0.0;
};
bars = [{ bars = [{
command = "${pkgBin "waybar"}"; command = "${pkgBin "waybar"}";
}]; }];