18 lines
474 B
Nix
18 lines
474 B
Nix
{
|
|
description = "NixOS configuration";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
home-manager.url = "github:nix-community/home-manager";
|
|
deploy-rs.url = "github:serokell/deploy-rs";
|
|
|
|
mobile-nixos = {
|
|
# plz change to NixOS/ when https://github.com/NixOS/mobile-nixos/pull/435 merges
|
|
url = "github:chaoticryptidz/mobile-nixos";
|
|
flake = false;
|
|
};
|
|
};
|
|
|
|
outputs = { ... }@inputs: import ./outputs.nix inputs;
|
|
}
|