mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 05:02:10 -08:00
chore: minor cleaning
This commit is contained in:
parent
93d02e1d84
commit
c740edb912
1 changed files with 1 additions and 12 deletions
|
@ -1,7 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
let
|
|
||||||
inherit (builtins) readFile;
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
home.file.".essentials" = {
|
home.file.".essentials" = {
|
||||||
source = ./essentials;
|
source = ./essentials;
|
||||||
|
@ -77,14 +74,6 @@ in
|
||||||
extensions = [ pkgs.github-copilot-cli ];
|
extensions = [ pkgs.github-copilot-cli ];
|
||||||
};
|
};
|
||||||
|
|
||||||
# programs.oh-my-posh = {
|
|
||||||
# enable = true;
|
|
||||||
# # enableZshIntegration = true;
|
|
||||||
# enableFishIntegration = true;
|
|
||||||
# enableBashIntegration = true;
|
|
||||||
# useTheme = "gruvbox";
|
|
||||||
# };
|
|
||||||
|
|
||||||
programs.starship = {
|
programs.starship = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableFishIntegration = true;
|
enableFishIntegration = true;
|
||||||
|
@ -92,7 +81,7 @@ in
|
||||||
enableNushellIntegration = true;
|
enableNushellIntegration = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file.".config/starship.toml".text = readFile ./jetpack.toml;
|
home.file.".config/starship.toml".text = builtins.readFile ./jetpack.toml;
|
||||||
|
|
||||||
programs.direnv = {
|
programs.direnv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue