rounded corners on picom + zsh stuff but its still broke ;0;

This commit is contained in:
Thorn Avery 2021-05-03 07:25:13 +00:00
parent 25b4e8acde
commit 2536fb5dd9
4 changed files with 14 additions and 2 deletions

View File

@ -51,6 +51,7 @@
nixpkgs.overlays = [
swatch.overlay
vim.overlay
(import ./overlays/picom.nix)
];
imports = [
./users/root

View File

@ -17,7 +17,7 @@
];
extraOptions = ''
corner-radius = 5;
corner-radius = 6;
'';
};
}

11
overlays/picom.nix Normal file
View File

@ -0,0 +1,11 @@
final: prev: {
picom = prev.picom.overrideAttrs (oldAttrs: rec {
version = "NEXT";
src = prev.fetchFromGitHub {
owner = "yshui";
repo = "picom";
sha256 = "CaSw80lfxopVNydn9f6lbl28agzvMkDCub8dYRv3Q30=";
rev = "7ba87598c177092a775d5e8e4393cb68518edaac";
};
});
}

View File

@ -13,7 +13,7 @@
home = "/home/thorn";
description = "Thorn Avery";
extraGroups = [ "wheel" "networkmanager" "disks" ];
# shell = pkgs.zsh;
shell = pkgs.zsh;
};
}