Browse Source

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

master
Thorn Avery 3 years ago
parent
commit
2536fb5dd9
4 changed files with 14 additions and 2 deletions
  1. +1
    -0
      flake.nix
  2. +1
    -1
      modules/picom/home.nix
  3. +11
    -0
      overlays/picom.nix
  4. +1
    -1
      users/thorn/default.nix

+ 1
- 0
flake.nix View File

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


+ 1
- 1
modules/picom/home.nix View File

@@ -17,7 +17,7 @@
];

extraOptions = ''
corner-radius = 5;
corner-radius = 6;
'';
};
}

+ 11
- 0
overlays/picom.nix 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";
};
});
}

+ 1
- 1
users/thorn/default.nix View File

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

}

Loading…
Cancel
Save