mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-06 21:09:22 +02:00
run nix fmt
This commit is contained in:
parent
eab8e4b1d8
commit
d5cbe31c02
61 changed files with 1299 additions and 830 deletions
30
flake.nix
30
flake.nix
|
@ -43,7 +43,6 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
|
||||
# Packages
|
||||
tela-icon-theme = {
|
||||
url = "github:vinceliuice/Tela-icon-theme";
|
||||
|
@ -67,18 +66,21 @@
|
|||
};
|
||||
};
|
||||
|
||||
outputs = inputs@{ self, nixpkgs, ... }: {
|
||||
nixosModules.default = import ./modules;
|
||||
homeManagerModules.default = import ./home-modules;
|
||||
nixosConfigurations = import ./systems {
|
||||
inherit self inputs nixpkgs;
|
||||
outputs =
|
||||
inputs@{ self, nixpkgs, ... }:
|
||||
{
|
||||
nixosModules.default = import ./modules;
|
||||
homeManagerModules.default = import ./home-modules;
|
||||
nixosConfigurations = import ./systems { inherit self inputs nixpkgs; };
|
||||
packages = nixpkgs.lib.attrsets.genAttrs nixpkgs.lib.systems.flakeExposed (
|
||||
system:
|
||||
import ./packages {
|
||||
inherit system inputs;
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
}
|
||||
);
|
||||
formatter = nixpkgs.lib.attrsets.genAttrs nixpkgs.lib.systems.flakeExposed (
|
||||
system: nixpkgs.legacyPackages.${system}.nixfmt-rfc-style
|
||||
);
|
||||
};
|
||||
packages = nixpkgs.lib.attrsets.genAttrs nixpkgs.lib.systems.flakeExposed (system: import ./packages {
|
||||
inherit system inputs;
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
});
|
||||
formatter = nixpkgs.lib.attrsets.genAttrs nixpkgs.lib.systems.flakeExposed (system:
|
||||
nixpkgs.legacyPackages.${system}.nixfmt-rfc-style
|
||||
);
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue