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