feat: mv flake.nix inputs.nix and add sym link

Since my flake basically only contains inputs i though it to be fitting
Also i have already an outputs.nix
This commit is contained in:
Ranomier 2025-09-14 22:48:19 +02:00
parent a40dad5e51
commit 280936542e
2 changed files with 41 additions and 40 deletions

View file

@ -1,40 +0,0 @@
{
inputs = {
# Main nix package repository
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
# NixOS unstable
nixos-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
# ready made hardware configurations. e.G.: Power saving
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
# generating filesystems in different formats
nixos-generators = {
url = "github:nix-community/nixos-generators";
inputs.nixpkgs.follows = "nixpkgs";
};
# additional user specific nix modules
home-manager = {
url = "github:nix-community/home-manager/release-25.05";
inputs.nixpkgs.follows = "nixpkgs";
};
# theming
stylix = {
url = "github:danth/stylix/release-25.05";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-secrets = {
url = "path:/home/ranomier/Projects/nix-secrets";
inputs.nixpkgs.follows = "nixpkgs";
};
# for managing flatpaks, like which ones are installed and which not
nix-flatpak.url = "github:gmodena/nix-flatpak";
};
outputs = inArgs: import ./outputs.nix inArgs;
}

1
flake.nix Symbolic link
View file

@ -0,0 +1 @@
inputs.nix