11 lines
167 B
Nix
11 lines
167 B
Nix
|
{ inputs, pkgs, ... }:
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
vkbasalt
|
||
|
];
|
||
|
|
||
|
home.file = {
|
||
|
".config/vkBasalt/vkBasalt.conf".source = ./confs/vkBasalt.conf;
|
||
|
};
|
||
|
}
|