summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2022-12-03 15:01:02 +0100
committerAdrian Kummerlaender2022-12-03 15:01:02 +0100
commitec15f22dc795e0e1a53ace6b6c4067c5d3a0ed92 (patch)
tree077ba0c9dc746e29dce3746ed756a7d3e33f4fea
parentbc3e89851af5efccd7129f319c23f19c8c766907 (diff)
downloadnixos_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.nix6
-rw-r--r--flake.lock8
-rw-r--r--flake.nix2
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
diff --git a/flake.lock b/flake.lock
index bb78b73..25e466f 100644
--- a/flake.lock
+++ b/flake.lock
@@ -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"
}
diff --git a/flake.nix b/flake.nix
index b9a4f2a..4d89f0a 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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;
};