mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
hosts/plover: fix library namespace
This commit is contained in:
parent
28d0b5a85b
commit
722bdaf3cc
@ -8,8 +8,8 @@
|
||||
./modules/profiles/hetzner-cloud-cx21.nix
|
||||
|
||||
# The users for this host.
|
||||
(lib.getUser "nixos" "admin")
|
||||
(lib.getUser "nixos" "plover")
|
||||
(lib.private.getUser "nixos" "admin")
|
||||
(lib.private.getUser "nixos" "plover")
|
||||
|
||||
# Hardened profile from nixpkgs.
|
||||
"${modulesPath}/profiles/hardened.nix"
|
||||
@ -81,5 +81,5 @@
|
||||
# Make Nix experimental.
|
||||
nix.package = pkgs.nixUnstable;
|
||||
|
||||
system.stateVersion = "23.11";
|
||||
system.stateVersion = "23.05";
|
||||
}
|
||||
|
@ -5,7 +5,7 @@
|
||||
# from nixos-generators.
|
||||
let
|
||||
inherit (builtins) toString;
|
||||
inherit (import ./networks.nix) interfaces;
|
||||
inherit (import ../hardware/networks.nix) interfaces;
|
||||
|
||||
# This is just referring to the same interface just with alternative names.
|
||||
mainEthernetInterfaceNames = [ "ens3" "enp0s3" ];
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
let
|
||||
user = "plover";
|
||||
homeManagerUser = lib.getUser "home-manager" user;
|
||||
homeManagerUser = lib.private.getUser "home-manager" user;
|
||||
in
|
||||
{
|
||||
users.users.${user} = {
|
||||
|
Loading…
Reference in New Issue
Block a user