mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
21.11 -> 22.05
This commit is contained in:
parent
674f02b2bb
commit
68beae0c9a
3 changed files with 7 additions and 7 deletions
|
@ -2,16 +2,16 @@
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1651743098,
|
"lastModified": 1653504306,
|
||||||
"narHash": "sha256-NuQNu6yHh54li0kZffM59FRC5bWCJusygL4Cy+3O0fY=",
|
"narHash": "sha256-bqjEskV+/tqOQqSEaCu4e6uWZ0F7ekBiMR16xpn4V0k=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "d4191fe35cbe52f755ef73009d4d37b9e002efa2",
|
"rev": "6efc186e6079ff3f328a2497ff3d36741ac60f6e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"id": "nixpkgs",
|
"id": "nixpkgs",
|
||||||
"ref": "nixos-21.11",
|
"ref": "nixos-22.05",
|
||||||
"type": "indirect"
|
"type": "indirect"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
inputs.nixpkgs.url = "nixpkgs/nixos-21.11";
|
inputs.nixpkgs.url = "nixpkgs/nixos-22.05";
|
||||||
|
|
||||||
outputs = { self, nixpkgs, ... }:
|
outputs = { self, nixpkgs, ... }:
|
||||||
let
|
let
|
||||||
|
|
|
@ -6,9 +6,9 @@
|
||||||
{ hardware.enableRedistributableFirmware = true; }
|
{ hardware.enableRedistributableFirmware = true; }
|
||||||
];
|
];
|
||||||
|
|
||||||
qemu = { lib, modulesPath, ... }: lib.mkMerge
|
qemu = { config, lib, modulesPath, ... }: lib.mkMerge
|
||||||
[
|
[
|
||||||
(import "${modulesPath}/profiles/qemu-guest.nix" { })
|
(import "${modulesPath}/profiles/qemu-guest.nix" { inherit config lib; })
|
||||||
{ services.qemuGuest.enable = true; }
|
{ services.qemuGuest.enable = true; }
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue