init
This commit is contained in:
commit
1928a12f16
25
flake.nix
Normal file
25
flake.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# flake.nix
|
||||||
|
{
|
||||||
|
description = "My own Neovim flake";
|
||||||
|
inputs = {
|
||||||
|
nixpkgs = {
|
||||||
|
url = "github:NixOS/nixpkgs";
|
||||||
|
};
|
||||||
|
vesktop = {
|
||||||
|
url = "github:Vencord/Vesktop";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs = { self, nixpkgs, ... }@inputs: {
|
||||||
|
nixosModules.vesktop = {config, pkgs, ...} :
|
||||||
|
{
|
||||||
|
environment.systemPackages = [
|
||||||
|
inputs.vesktop.packages.${pkgs.system}.vesktop
|
||||||
|
];
|
||||||
|
programs.vesktop = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user