system/flake.nix

29 lines
604 B
Nix
Raw Normal View History

2022-08-29 23:46:02 +03:00
{
inputs = {
2022-08-30 00:17:21 +03:00
nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable;
2022-08-29 23:46:02 +03:00
2022-08-30 00:17:21 +03:00
home-manager = {
url = github:nix-community/home-manager;
inputs.nixpkgs.follows = "nixpkgs";
};
};
2022-08-29 23:46:02 +03:00
2022-08-30 00:17:21 +03:00
outputs = inputs @ { self, nixpkgs, ... }:
let
2022-08-29 23:46:02 +03:00
system = "x86_64-linux";
2022-08-30 00:17:21 +03:00
in
{
homeConfigurations = import ./outputs/home.nix {
inherit inputs system;
};
nixosConfigurations = import ./outputs/system.nix {
inherit nixpkgs system;
};
devShell.${system} = import ./shell.nix {
pkgs = import nixpkgs { inherit system; };
};
2022-08-29 23:46:02 +03:00
};
}