diff options
author | Adrian Kummerlaender | 2022-12-03 15:01:02 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2022-12-03 15:01:02 +0100 |
commit | ec15f22dc795e0e1a53ace6b6c4067c5d3a0ed92 (patch) | |
tree | 077ba0c9dc746e29dce3746ed756a7d3e33f4fea | |
parent | bc3e89851af5efccd7129f319c23f19c8c766907 (diff) | |
download | nixos_system-ec15f22dc795e0e1a53ace6b6c4067c5d3a0ed92.tar nixos_system-ec15f22dc795e0e1a53ace6b6c4067c5d3a0ed92.tar.gz nixos_system-ec15f22dc795e0e1a53ace6b6c4067c5d3a0ed92.tar.bz2 nixos_system-ec15f22dc795e0e1a53ace6b6c4067c5d3a0ed92.tar.lz nixos_system-ec15f22dc795e0e1a53ace6b6c4067c5d3a0ed92.tar.xz nixos_system-ec15f22dc795e0e1a53ace6b6c4067c5d3a0ed92.tar.zst nixos_system-ec15f22dc795e0e1a53ace6b6c4067c5d3a0ed92.zip |
Update to 22.11
-rw-r--r-- | configuration.nix | 6 | ||||
-rw-r--r-- | flake.lock | 8 | ||||
-rw-r--r-- | flake.nix | 2 |
3 files changed, 9 insertions, 7 deletions
diff --git a/configuration.nix b/configuration.nix index 73138f6..667d712 100644 --- a/configuration.nix +++ b/configuration.nix @@ -19,8 +19,10 @@ nix = { package = pkgs.nixUnstable; - allowedUsers = [ "common" ]; - trustedUsers = [ "root" "common" ]; + settings = { + allowed-users = [ "common" ]; + trusted-users = [ "root" "common" ]; + }; extraOptions = '' experimental-features = nix-command flakes @@ -2,16 +2,16 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1665066044, - "narHash": "sha256-mkO0LMHVunMFRWLcJhHT0fBf2v6RlH3vg7EVpfSIAFc=", + "lastModified": 1670009809, + "narHash": "sha256-yt/dQ32Vz4WenDLu4XeHbnXFxiHbTcnU0WwiLW5Ce6c=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "ed9b904c5eba055a6d6f5c1ccb89ba8f0a056dc6", + "rev": "660e7737851506374da39c0fa550c202c824a17c", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-22.05", + "ref": "nixos-22.11", "repo": "nixpkgs", "type": "github" } @@ -2,7 +2,7 @@ description = "System environment of Adrian Kummerlaender"; inputs = { - nixpkgs.url = github:NixOS/nixpkgs/nixos-22.05; + nixpkgs.url = github:NixOS/nixpkgs/nixos-22.11; pkgs-personal.url = github:KnairdA/pkgs/master; }; |