Fix broken home manager links

This commit is contained in:
Emi Simpson 2022-12-18 15:10:45 -05:00
parent 659c3b2fd8
commit c2f2c22d53
Signed by: Emi
GPG Key ID: A12F2C2FFDC3D847
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{pkgs, ...}: {
imports = [./home.nogui.nix]
imports = [./home.nogui.nix];
home.packages = with pkgs; [
clapper
];

View File

@ -152,7 +152,7 @@ let systemInformation = import ./system/system-information.nix; in
extraGroups = [ "networkmanager" "wheel" ];
shell = pkgs.fish;
};
home-manager.users.ember = import ./configs/home.nix;
home-manager.users.ember = import ./configs/home.full.nix;
# Allow unfree packages
nixpkgs.config.allowUnfree = true;