mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 01:44:40 +02:00
update flakes
This commit is contained in:
parent
f5e9670776
commit
80b6c45bdc
2 changed files with 31 additions and 31 deletions
30
flake.lock
generated
30
flake.lock
generated
|
@ -102,11 +102,11 @@
|
|||
"nixpkgs-regression": "nixpkgs-regression"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1658169134,
|
||||
"narHash": "sha256-VcmwZEmIfSKbJ+tJzwD6L8fxqHQs7dCWzkztXjEv9Ik=",
|
||||
"lastModified": 1658489272,
|
||||
"narHash": "sha256-z0ov/NPT8egaoDUVw4i5SuKcx6t7YZbL7lzdOBsP1sA=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nix",
|
||||
"rev": "fbd0a6c6e2e87f6679fe5cabaddaa877cf3e5a90",
|
||||
"rev": "280543933507839201547f831280faac614d0514",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -147,11 +147,11 @@
|
|||
},
|
||||
"nixpkgs-22_05": {
|
||||
"locked": {
|
||||
"lastModified": 1658029355,
|
||||
"narHash": "sha256-VJcYmkYfzwHrZ76SMH6y9KqoVFOPgZiJgh1rK9cF2mw=",
|
||||
"lastModified": 1658634393,
|
||||
"narHash": "sha256-VW7edeFzA9VU8gZPxPFGpoPsM2AQLYHKhA9H5+OYtno=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "4e329926df7ee5fa49929a83d31ee7d541f8b45c",
|
||||
"rev": "2e14bc76ab41c60ba57fd57ff52badaa29d349f5",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -179,11 +179,11 @@
|
|||
},
|
||||
"nixpkgs-unstable": {
|
||||
"locked": {
|
||||
"lastModified": 1658380158,
|
||||
"narHash": "sha256-DBunkegKWlxPZiOcw3/SNIFg93amkdGIy2g0y/jDpHg=",
|
||||
"lastModified": 1658557357,
|
||||
"narHash": "sha256-0gqNef6skYQKJSS2vLojxrXOrc72zoX5VTDKUqEo6Gk=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "a65b5b3f5504b8b89c196aba733bdf2b0bd13c16",
|
||||
"rev": "42ca9bef09e780eabe84328dd1b730cef978f098",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -210,11 +210,11 @@
|
|||
},
|
||||
"nixpkgs_3": {
|
||||
"locked": {
|
||||
"lastModified": 1658321858,
|
||||
"narHash": "sha256-2f5NzHbi1NLSYnDg6cRu25B+XRxqngicvggg+0GgKHI=",
|
||||
"lastModified": 1658500284,
|
||||
"narHash": "sha256-g7vwZ5UF8PvC9f2/7Zf5O6zxgJiMSuh1CiGZVuuOhEQ=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "26fe7618c7efbbfe28db9a52a21fb87e67ebaf06",
|
||||
"rev": "e3583ad6e533a9d8dd78f90bfa93812d390ea187",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -260,11 +260,11 @@
|
|||
"nixpkgs-22_05": "nixpkgs-22_05"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1658398472,
|
||||
"narHash": "sha256-DjPJ3YQXyV1GRvF3ToBIY+RYdypwNxYchN1HIhDPLe0=",
|
||||
"lastModified": 1658635258,
|
||||
"narHash": "sha256-EC8y3Rg+l9IzIUdOaFSA0LMdDipTRoweg1Y2EL8XhMc=",
|
||||
"owner": "Mic92",
|
||||
"repo": "sops-nix",
|
||||
"rev": "6efa719f8d02139ce41398b9e59e06888dc1305a",
|
||||
"rev": "d7f8cf1b77ebe5f287884f17b1ee4cc4f48bad1d",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
32
flake.nix
32
flake.nix
|
@ -22,21 +22,21 @@
|
|||
};
|
||||
outputs = { self, flake-parts, deploy-rs, ... } @ inputs:
|
||||
flake-parts.lib.mkFlake { inherit self; } {
|
||||
imports = [
|
||||
./nixos/configurations.nix
|
||||
#./nixos/images/default.nix
|
||||
./shell.nix
|
||||
];
|
||||
systems = [ "x86_64-linux" "aarch64-linux" ];
|
||||
perSystem = {inputs', ...}: {
|
||||
# make pkgs available to all `perSystem` functions
|
||||
_module.args.pkgs = inputs'.nixpkgs.legacyPackages;
|
||||
};
|
||||
flake = {
|
||||
checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib;
|
||||
deploy = import ./nixos/deploy.nix (inputs // {
|
||||
inherit inputs;
|
||||
});
|
||||
};
|
||||
imports = [
|
||||
./nixos/configurations.nix
|
||||
#./nixos/images/default.nix
|
||||
./shell.nix
|
||||
];
|
||||
systems = [ "x86_64-linux" "aarch64-linux" ];
|
||||
perSystem = { inputs', ... }: {
|
||||
# make pkgs available to all `perSystem` functions
|
||||
_module.args.pkgs = inputs'.nixpkgs.legacyPackages;
|
||||
};
|
||||
flake = {
|
||||
checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib;
|
||||
deploy = import ./nixos/deploy.nix (inputs // {
|
||||
inherit inputs;
|
||||
});
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue