Rename systemFlake to mkFlake in tests/examples

This commit is contained in:
Gytis Ivaskevicius 2021-09-05 22:44:18 +03:00
parent 477ea3b85f
commit afaa6ea2a7
8 changed files with 8 additions and 8 deletions

View File

@ -12,7 +12,7 @@
let
inherit (utils.lib) exportOverlays exportPackages exportModules;
in
utils.lib.systemFlake {
utils.lib.mkFlake {
inherit self inputs;
# Channel specific overlays. Overlays `coreutils` from `unstable` channel.

View File

@ -21,7 +21,7 @@
outputs = inputs@{ self, nixpkgs, utils, home-manager, neovim, nur }:
utils.lib.systemFlake {
utils.lib.mkFlake {
inherit self inputs;

View File

@ -9,7 +9,7 @@
outputs = inputs@{ self, nixpkgs, unstable, utils }:
utils.lib.systemFlake {
utils.lib.mkFlake {
inherit self inputs;
# Channel definitions.

View File

@ -2,7 +2,7 @@
inputs.utils.url = path:../../;
outputs = inputs@{ self, nixpkgs, utils }:
utils.lib.systemFlake {
utils.lib.mkFlake {
inherit self inputs;
supportedSystems = [ "x86_64-linux" ];

View File

@ -13,7 +13,7 @@
pnameFromOutput = output: self.${output}.x86_64-linux.pname;
in
utils.lib.systemFlake {
utils.lib.mkFlake {
inherit self inputs;
supportedSystems = [ "x86_64-linux" ];
channels.nixpkgs.input = nixpkgs;

View File

@ -5,7 +5,7 @@
let
mkApp = utils.lib.mkApp;
in
utils.lib.systemFlake {
utils.lib.mkFlake {
inherit self inputs;
supportedSystems = [ "x86_64-linux" ];
channels.nixpkgs.input = nixpkgs;

View File

@ -8,7 +8,7 @@
fileSystems."/" = { device = "test"; fsType = "ext4"; };
};
in
utils.lib.systemFlake {
utils.lib.mkFlake {
inherit self inputs;
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" ];

View File

@ -2,7 +2,7 @@
inputs.utils.url = path:../../;
outputs = inputs@{ self, nixpkgs, utils }:
utils.lib.systemFlake {
utils.lib.mkFlake {
inherit self inputs;
supportedSystems = [ "x86_64-linux" ];
channels.nixpkgs.input = nixpkgs;