fonts.fonts needed

This commit is contained in:
Sebastian Moser
2023-11-01 13:22:01 +01:00
parent c2f0b46e80
commit eb4ba503df
2 changed files with 5 additions and 7 deletions

View File

@@ -1,13 +1,16 @@
{ secretsDir, inputs, ... }:
{ pkgs, secretsDir, inputs, ... }:
{
users.users.me = {
isNormalUser = true;
#passwordFile = "${secretsDir}/me-pwd";
password = "changeme";
extraGroups = [ "networkmanager" "wheel" "libvirtd" ]; # Enable sudo for the user.
};
#home-manager._module.args = { inherit inputs; };
home-manager.users.me = import ./home.nix;
fonts.fonts = with pkgs; [
hack-font
];
}