Hopefully fix starship issue
This commit is contained in:
parent
001fc55083
commit
bacfa8dc29
|
@ -11,6 +11,11 @@
|
|||
|
||||
# Get home-manager up and running
|
||||
home-manager.config = ./home-manager/common.nix;
|
||||
home-manager.sharedModules = [
|
||||
({ unstable, ... }: {
|
||||
programs.starship.package = unstable.starship;
|
||||
})
|
||||
];
|
||||
|
||||
# Have to put packages here, as it does not have environment.systemPackages
|
||||
environment.packages = with pkgs;
|
||||
|
|
|
@ -89,6 +89,9 @@
|
|||
users.nathan = import ./home-manager/common.nix;
|
||||
};
|
||||
}
|
||||
({ pkgs, config, unstable, ... }: {
|
||||
home-manager.users.nathan.programs.starship.package = unstable.starship;
|
||||
})
|
||||
./home.nix
|
||||
];
|
||||
desktopModules = baseHomeModules ++ coreModules ++ [
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
## Shell
|
||||
|
|
Loading…
Reference in New Issue