Initial commit
This commit is contained in:
commit
cfcc57a8bd
353 changed files with 18756 additions and 0 deletions
37
flake/den/templates/default/modules/inputs.nix
Normal file
37
flake/den/templates/default/modules/inputs.nix
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# This repo was generated with github:vic/flake-file#dendritic template.
|
||||
# Run `nix run .#write-flake` after changing any input.
|
||||
#
|
||||
# Inputs can be placed in any module, the best practice is to have them
|
||||
# as close as possible to their actual usage.
|
||||
# See: https://vic.github.io/dendrix/Dendritic.html#minimal-and-focused-flakenix
|
||||
#
|
||||
# For our template, we enable home-manager and nix-darwin by default, but
|
||||
# you are free to remove them if not being used by you.
|
||||
{ inputs, ... }:
|
||||
{
|
||||
|
||||
flake-file.inputs = {
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
darwin = {
|
||||
url = "github:nix-darwin/nix-darwin";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
## these stable inputs are for wsl
|
||||
#nixpkgs-stable.url = "github:nixos/nixpkgs/release-25.05";
|
||||
#home-manager-stable.url = "github:nix-community/home-manager/release-25.05";
|
||||
#home-manager-stable.inputs.nixpkgs.follows = "nixpkgs-stable";
|
||||
|
||||
#nixos-wsl = {
|
||||
# url = "github:nix-community/nixos-wsl";
|
||||
# inputs.nixpkgs.follows = "nixpkgs-stable";
|
||||
# inputs.flake-compat.follows = "";
|
||||
#};
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue