This commit is contained in:
Sebastian Moser
2023-11-21 13:53:05 +01:00
parent 31a632d87b
commit cbcf3a0e3d
13 changed files with 377 additions and 114 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, secretsDir, inputs, config, self, ... }:
{ pkgs, secretsDir, inputs, config, self, lib, ... }:
{
users.users.me = {
isNormalUser = true;
@@ -7,13 +7,13 @@
extraGroups = [ "networkmanager" "wheel" "libvirtd" ]; # Enable sudo for the user.
};
#home-manager._module.args = { inherit inputs; };
home-manager.users.me = import ./home.nix;
home-manager.extraSpecialArgs = {
inherit self;
hostname = config.networking.hostName;
};
home-manager.users.me = import ./home.nix;
fonts.fonts = with pkgs; [
hack-font
];