diff --git a/flake.nix b/flake.nix new file mode 100644 index 00000000..52259576 --- /dev/null +++ b/flake.nix @@ -0,0 +1,31 @@ +{ + description = "Main Flake"; + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; + nixpkgs-stable.url = "github:NixOS/nixpkgs/release-24.05"; + + flake-utils.url = "github:numtide/flake-utils"; + + home-manager = { + url = "github:nix-community/home-manager"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + + sops-nix = { + url = "github:Mic92/sops-nix"; + inputs.nixpkgs.follows = "nixpkgs"; + inputs.nixpkgs-stable.follows = "nixpkgs-stable"; + }; + + impermanence.url = "github:nix-community/impermanence"; + + stylix.url = "github:danth/stylix"; + + helix.url = "github:pascalkuthe/helix/inline-diagnostics"; + }; + + outputs = {} @ inputs: let + in { + }; +}