mirror of
https://github.com/danth/stylix
synced 2024-11-10 06:34:15 +00:00
Initial alacritty module
This commit is contained in:
parent
f78eff2236
commit
c3a39e1e32
1 changed files with 16 additions and 0 deletions
16
modules/alacritty.nix
Normal file
16
modules/alacritty.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{pkgs, config, lib, ... }:
|
||||
let
|
||||
themeFile = config.lib.stylix.colors {
|
||||
templateRepo = pkgs.fetchFromGitHub {
|
||||
owner = "aarowill";
|
||||
repo = "base16-alacritty";
|
||||
rev = "914727e48ebf3eab1574e23ca0db0ecd0e5fe9d0";
|
||||
sha256 = lib.fakeSha256;
|
||||
};
|
||||
};
|
||||
in
|
||||
{
|
||||
home-manager.sharedModules = [{
|
||||
programs.alacritty.settings.import = [ themeFile ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue