change input formats

This commit is contained in:
Gerg-L 2023-11-01 19:15:11 -04:00
parent f0cef42c4f
commit d493b989cd
Signed by: gerg-l
SSH key fingerprint: SHA256:FPYDHIkvMocr4wdmZXpgpJjsb2Tw6rASs2ISPbOb0KI

View file

@ -1,49 +1,83 @@
{ {
inputs = { inputs = {
#channels #nixpkgs refs
master.url = "github:NixOS/nixpkgs"; master = {
unstable.url = "github:NixOS/nixpkgs?ref=nixos-unstable"; type = "github";
stable.url = "github:NixOS/nixpkgs?ref=nixos-23.05"; owner = "NixOS";
repo = "nixpkgs";
nix = { ref = "master";
url = "github:NixOS/nix?ref=c29b8ba142a0650d1182ca838ddc1b2d273dcd2a"; };
inputs.nixpkgs.follows = "stable"; unstable = {
type = "github";
owner = "NixOS";
repo = "nixpkgs";
ref = "nixos-unstable";
};
stable = {
type = "github";
owner = "NixOS";
repo = "nixpkgs";
ref = "nixos-23.05";
};
#nix itself
nix = {
type = "github";
owner = "NixOS";
repo = "nix";
ref = "e3febfcd532adb23ca05ac465a2b907d6f1a3529";
inputs.nixpkgs.follows = "unstable";
}; };
nixos-generators = { nixos-generators = {
url = "github:nix-community/nixos-generators"; type = "github";
owner = "nix-community";
repo = "nixos-generators";
inputs.nixpkgs.follows = "unstable"; inputs.nixpkgs.follows = "unstable";
}; };
sops-nix = { sops-nix = {
url = "github:mic92/sops-nix"; type = "github";
owner = "mic92";
repo = "sops-nix";
inputs.nixpkgs.follows = "unstable"; inputs.nixpkgs.follows = "unstable";
}; };
disko = { disko = {
url = "github:nix-community/disko"; type = "github";
owner = "nix-community";
repo = "disko";
inputs.nixpkgs.follows = "unstable"; inputs.nixpkgs.follows = "unstable";
}; };
nixfmt = { nixfmt = {
url = "github:piegamesde/nixfmt?ref=rfc101-style"; type = "github";
inputs.nixpkgs.follows = "unstable"; owner = "piegamesde";
}; repo = "nixfmt";
spicetify-nix = { ref = "rfc101-style";
url = "github:Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "unstable"; inputs.nixpkgs.follows = "unstable";
}; };
#my own packages #my own packages
spicetify-nix = {
type = "github";
owner = "Gerg-L";
repo = "spicetify-nix";
inputs.nixpkgs.follows = "unstable";
};
suckless = { suckless = {
url = "github:Gerg-L/suckless"; type = "github";
owner = "Gerg-L";
repo = "suckless";
inputs.nixpkgs.follows = "unstable"; inputs.nixpkgs.follows = "unstable";
}; };
nvim-flake = { nvim-flake = {
url = "github:Gerg-L/nvim-flake"; type = "github";
owner = "Gerg-L";
repo = "nvim-flake";
inputs.nixpkgs.follows = "unstable"; inputs.nixpkgs.follows = "unstable";
}; };
fetch-rs = { fetch-rs = {
url = "github:Gerg-L/fetch-rs"; type = "github";
owner = "Gerg-L";
repo = "fetch-rs";
inputs.nixpkgs.follows = "unstable"; inputs.nixpkgs.follows = "unstable";
}; };
}; };
outputs = i: import ./outputs.nix i; outputs = x: import ./outputs.nix x;
} }