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:
parent
a40dad5e51
commit
280936542e
2 changed files with 41 additions and 40 deletions
40
flake.nix
40
flake.nix
|
@ -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
1
flake.nix
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
inputs.nix
|
40
inputs.nix
Normal file
40
inputs.nix
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{
|
||||||
|
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;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue