dotfiles/flake.nix

20 lines
418 B
Nix
Raw Normal View History

2024-08-28 11:07:30 -05:00
{
inputs = {
nixpkgs.url = "nixpkgs/nixos-24.05";
flake-utils.url = "github:numtide/flake-utils";
home-manager = {
url = "github:exzombie/home-manager-smona/nixgl-compat";
inputs.nixpkgs.follows = "nixpkgs";
};
nixGL.url = "github:nix-community/nixGL";
};
2024-08-28 11:58:09 -05:00
outputs = { nixpkgs, ... } @ inputs:
(import ./modules/hosts.nix inputs) // {
# TODO devshell config
};
2024-08-28 11:07:30 -05:00
}