diff options
| author | Karel Kočí <cynerd@email.cz> | 2025-11-14 09:18:36 +0100 |
|---|---|---|
| committer | Karel Kočí <cynerd@email.cz> | 2025-11-14 09:18:36 +0100 |
| commit | e44c078ebcea9d81da6d61a0ae596a3e46e9a12d (patch) | |
| tree | 8870b8640cec95c389b9afc5dbbdd048f88145ef /nixos/modules/users.nix | |
| parent | 7606d67ed1dc56b5b5f05b6423f7a5e81db05151 (diff) | |
| download | nixos-personal-e44c078ebcea9d81da6d61a0ae596a3e46e9a12d.tar.gz nixos-personal-e44c078ebcea9d81da6d61a0ae596a3e46e9a12d.tar.bz2 nixos-personal-e44c078ebcea9d81da6d61a0ae596a3e46e9a12d.zip | |
treewide: full update in some time
Diffstat (limited to 'nixos/modules/users.nix')
| -rw-r--r-- | nixos/modules/users.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/users.nix b/nixos/modules/users.nix index f3b7fbe..9c65f8b 100644 --- a/nixos/modules/users.nix +++ b/nixos/modules/users.nix @@ -3,8 +3,8 @@ config, ... }: let - isNative = config.nixpkgs.hostPlatform == config.nixpkgs.buildPlatform; - isArm = pkgs.hostPlatform.isAarch; + isNative = pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform; + isArm = pkgs.stdenv.hostPlatform.isAarch; in { users = { mutableUsers = false; |
