init
This commit is contained in:
commit
28a9a97bf5
6 changed files with 69 additions and 0 deletions
12
flake.nix
Normal file
12
flake.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||
};
|
||||
outputs = {nixpkgs, ...}: let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in {
|
||||
packages.${system}.default = pkgs.callPackage ./package.nix {};
|
||||
# nixosModules.${system}.default = ./module.nix;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue