dotfiles/flake.nix
2021-10-03 23:45:49 +02:00

24 lines
469 B
Nix

{
description = "dotfiles";
outputs = { self, nixpkgs }:
let
pkgs = import nixpkgs
{
system = "x86_64-linux";
config = {
allowUnfree = true;
};
};
in
{
packages.x86_64-linux.lutris = pkgs.lutris;
nixosConfigurations = {
dustbowl = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./nixos/dustbowl.nix ];
};
};
};
}