diff options
author | sils <sils@sils.li> | 2023-06-06 11:38:04 +0200 |
---|---|---|
committer | sils <sils@sils.li> | 2023-06-06 11:40:04 +0200 |
commit | 84fcf9eddec76c6806e31d5e75d1c349d6bfe550 (patch) | |
tree | 9114001587bb957e3e4f1c76c2de2cfa853def3e | |
parent | Revert: Remove Conduit (diff) | |
download | nixos-server-84fcf9eddec76c6806e31d5e75d1c349d6bfe550.tar.gz nixos-server-84fcf9eddec76c6806e31d5e75d1c349d6bfe550.zip |
Build(flake): Update
This updates the Version of NixOS used.
-rw-r--r-- | flake.lock | 55 | ||||
-rw-r--r-- | flake.nix | 4 |
2 files changed, 46 insertions, 13 deletions
diff --git a/flake.lock b/flake.lock index 02c8ecb..e930d3a 100644 --- a/flake.lock +++ b/flake.lock @@ -16,6 +16,22 @@ "type": "gitlab" } }, + "flake-compat": { + "flake": false, + "locked": { + "lastModified": 1668681692, + "narHash": "sha256-Ht91NGdewz8IQLtWZ9LCeNXMSXHUss+9COoqu6JLmXU=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "009399224d5e398d03b22badca40a37ac85412a1", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, "flake-utils": { "inputs": { "systems": [ @@ -23,11 +39,11 @@ ] }, "locked": { - "lastModified": 1681202837, - "narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=", + "lastModified": 1685518550, + "narHash": "sha256-o2d0KcvaXzTrPRIo0kOLV0/QXHhDQ5DTi+OxcjO8xqY=", "owner": "numtide", "repo": "flake-utils", - "rev": "cfacdce06f30d2b68473a46042957675eebb3401", + "rev": "a1720a10a6cfe8234c0e93907ffe81be440f4cef", "type": "github" }, "original": { @@ -38,16 +54,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1684522302, - "narHash": "sha256-L7nUSrOYTWvXmIQ8NtVU2/AAah/ouJpf9DDVSt0s9+I=", + "lastModified": 1685932107, + "narHash": "sha256-5uS2UY4jIgOXEm/9Lp73rD8KPe4HkkrELqN7gdAiqRs=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "c555a28f2436be370c40df70f4cd6c25fceff7af", + "rev": "6546ccde50e36db0edc9feb17188f46ed4ee0d4a", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-22.11-small", + "ref": "nixos-23.05-small", "repo": "nixpkgs", "type": "github" } @@ -67,6 +83,21 @@ "type": "indirect" } }, + "nixpkgs-23_05": { + "locked": { + "lastModified": 1684782344, + "narHash": "sha256-SHN8hPYYSX0thDrMLMWPWYulK3YFgASOrCsIL3AJ78g=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "8966c43feba2c701ed624302b6a935f97bcbdf88", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-23.05", + "type": "indirect" + } + }, "root": { "inputs": { "flake-utils": "flake-utils", @@ -79,23 +110,25 @@ "simple-nixos-mailserver": { "inputs": { "blobs": "blobs", + "flake-compat": "flake-compat", "nixpkgs": [ "nixpkgs" ], "nixpkgs-22_11": "nixpkgs-22_11", + "nixpkgs-23_05": "nixpkgs-23_05", "utils": "utils" }, "locked": { - "lastModified": 1671659164, - "narHash": "sha256-DbpT+v1POwFOInbrDL+vMbYV3mVbTkMxmJ5j50QnOcA=", + "lastModified": 1685482651, + "narHash": "sha256-x3W/EZftpdDzJw5dus6i3efIBBbGWFqWXEVfA3kcyyU=", "owner": "simple-nixos-mailserver", "repo": "nixos-mailserver", - "rev": "bc667fb6afc45f6cc2d118ab77658faf2227cffd", + "rev": "acc7791ee9f47f62529a874d8b46f09b5bce2ce0", "type": "gitlab" }, "original": { "owner": "simple-nixos-mailserver", - "ref": "nixos-22.11", + "ref": "nixos-23.05", "repo": "nixos-mailserver", "type": "gitlab" } diff --git a/flake.nix b/flake.nix index 2120778..11312c7 100644 --- a/flake.nix +++ b/flake.nix @@ -3,7 +3,7 @@ description = "Nixos server config"; inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11-small"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05-small"; systems.url = "github:nix-systems/x86_64-linux"; flake-utils = { @@ -12,7 +12,7 @@ }; simple-nixos-mailserver = { - url = "gitlab:simple-nixos-mailserver/nixos-mailserver/nixos-22.11"; + url = "gitlab:simple-nixos-mailserver/nixos-mailserver/nixos-23.05"; inputs = { nixpkgs.follows = "nixpkgs"; }; |