Formatting
This commit is contained in:
parent
a65aecc2c9
commit
5f8b3d97f5
19
flake.nix
19
flake.nix
|
@ -4,34 +4,39 @@
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
utils.url = "github:gytis-ivaskevicius/flake-utils-plus/v1.3.1";
|
utils.url = "github:gytis-ivaskevicius/flake-utils-plus/v1.3.1";
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager";
|
url = "github:nix-community/home-manager";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
nur = {
|
nur = {
|
||||||
url = "github:nix-community/NUR";
|
url = "github:nix-community/NUR";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
nixos-hardware = {
|
nixos-hardware = {
|
||||||
url = "github:NixOS/nixos-hardware/master";
|
url = "github:NixOS/nixos-hardware/master";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
emacs-overlay = {
|
emacs-overlay = {
|
||||||
url = "github:nix-community/emacs-overlay";
|
url = "github:nix-community/emacs-overlay";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs@{ self, utils, nixpkgs, nixos-hardware, nur, home-manager
|
outputs =
|
||||||
, emacs-overlay, ... }:
|
inputs@{ self
|
||||||
|
, emacs-overlay
|
||||||
|
, home-manager
|
||||||
|
, nixos-hardware
|
||||||
|
, nixpkgs
|
||||||
|
, nur
|
||||||
|
, utils
|
||||||
|
, ...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
inherit (utils.lib) mkFlake;
|
inherit (utils.lib) mkFlake;
|
||||||
inherit (self.lib.my) mapModules mapModulesRec';
|
inherit (self.lib.my) mapModules mapModulesRec';
|
||||||
in mkFlake {
|
in
|
||||||
|
mkFlake {
|
||||||
lib = nixpkgs.lib.extend (self: super: {
|
lib = nixpkgs.lib.extend (self: super: {
|
||||||
my = import ./lib {
|
my = import ./lib {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
|
|
Reference in New Issue
Block a user