Bleh
This commit is contained in:
parent
4e034f1bfc
commit
8376e2453c
1 changed files with 8 additions and 2 deletions
10
flake.nix
10
flake.nix
|
@ -67,6 +67,12 @@
|
||||||
self, nixpkgs, nixos-wsl,
|
self, nixpkgs, nixos-wsl,
|
||||||
# Added by me
|
# Added by me
|
||||||
agenix, home-manager, nix-index-database, xil, ... }:
|
agenix, home-manager, nix-index-database, xil, ... }:
|
||||||
|
let
|
||||||
|
pkgs = import nixpkgs {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
config.allowUnfree = true;
|
||||||
|
};
|
||||||
|
in
|
||||||
{
|
{
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
nixos-wsl = nixpkgs.lib.nixosSystem {
|
nixos-wsl = nixpkgs.lib.nixosSystem {
|
||||||
|
@ -108,8 +114,8 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
packages.x86_64-linux = {
|
packages.x86_64-linux = {
|
||||||
irdkit = callPackage ./home/packages/irdkit/package.nix {};
|
irdkit = pkgs.callPackage ./home/packages/irdkit/package.nix {};
|
||||||
ird_tools = callPackage ./home/packages/ird_tools/package.nix {};
|
ird_tools = pkgs.callPackage ./home/packages/ird_tools/package.nix {};
|
||||||
# rom-properties = callPackage ./home/packages/rom-properties/package.nix {};
|
# rom-properties = callPackage ./home/packages/rom-properties/package.nix {};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue