tangled
alpha
login
or
join now
nel.pet
/
cyclamen
4
fork
atom
NixOS and Home Manager config
4
fork
atom
overview
issues
pulls
pipelines
refactor(kitty): use new wrappers kitty module
nel.pet
2 months ago
7270bb9e
af9d3bcd
verified
This commit was signed with the committer's
known signature
.
nel.pet
SSH Key Fingerprint:
SHA256:Zd+mWw4EweOfjYKNMYyVtMSN7oj+SBabmubG4RThVEI=
+4
-10
1 changed file
expand all
collapse all
unified
split
modules
home
kitty
default.nix
+4
-10
modules/home/kitty/default.nix
···
1
1
-
{ pkgs, inputs, ... }: {
2
2
-
home.packages = [
3
3
-
(inputs.wrappers.lib.wrapPackage {
4
4
-
inherit pkgs;
5
5
-
package = pkgs.kitty;
6
6
-
flags = {
7
7
-
"--config" = ./kitty.conf;
8
8
-
};
9
9
-
})
10
10
-
];
1
1
+
{ wrappers, ... }: {
2
2
+
home.packages = [ (wrappers.kitty {
3
3
+
"kitty.conf".path = ./kitty.conf;
4
4
+
}) ];
11
5
}