diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-10-01 00:57:41 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-10-01 00:57:41 +0200 |
commit | a1cde07e8dc53aebc5eb8cc16c5524bc3d142680 (patch) | |
tree | 7e09cec495477f4f766bf5ca9cde72f07360ec2f | |
parent | 2ee866228ce66170c3a546a4a566ccaec92f9af8 (diff) |
refactor(id1000): use the correct module for user-account
-rw-r--r-- | systems/ayase.scm | 2 | ||||
-rw-r--r-- | users/id1000.scm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/systems/ayase.scm b/systems/ayase.scm index 0d7d086..055a27a 100644 --- a/systems/ayase.scm +++ b/systems/ayase.scm @@ -140,7 +140,7 @@ (swap-label "-2")) (define (users) - (use-modules (gnu system shadow) + (use-modules (gnu system accounts) (users id1000)) (append %base-user-accounts (list uid1000-account))) diff --git a/users/id1000.scm b/users/id1000.scm index cf7e3f2..70ed576 100644 --- a/users/id1000.scm +++ b/users/id1000.scm @@ -23,7 +23,7 @@ #:use-module (gnu services) ;; user-account - #:use-module (gnu system shadow) + #:use-module (gnu system accounts) ;; local-file #:use-module (guix gexp) |