Home-manager refactoring

This commit is contained in:
Bad 2022-06-28 23:07:30 +02:00
parent c6b6816e47
commit a783855706
5 changed files with 7 additions and 11 deletions

View file

@ -0,0 +1,7 @@
{ ... }: {
imports = [
./podman.nix
./containers.nix
./podman-dnsname.nix
];
}

View file

@ -1,11 +0,0 @@
{ hmUsers, ... }:
{
home-manager.users = { inherit (hmUsers) nixos; };
users.users.nixos = {
password = "nixos";
description = "default";
isNormalUser = true;
extraGroups = [ "wheel" ];
};
}