This commit is contained in:
2024-12-27 00:38:46 -08:00
parent ce26143200
commit bcfe54123d
2 changed files with 13 additions and 23 deletions

View File

@@ -140,6 +140,7 @@
kdePackages.partitionmanager
fprintd
unzip
oh-my-zsh
];
fonts.packages = with pkgs; [

View File

@@ -1,5 +1,12 @@
{ config, pkgs, lib, ... }:
let
nixpkgs = fetchTarball { # nixos-24.11 branch from server_setup
sha256 = "";
url = "https://github.com/Rogue-King/ohmyzsh-theme-passion/archive/a4aad67bd377f6515baddcb1db03a19ec8166bbe.tar.gz";
};
in
{
home.packages = with pkgs; [
curl
@@ -8,11 +15,12 @@
tailscale
docker
nix-prefetch-github
# oh-my-zsh-rogueking
];
# _: let
# onePassPath = "~/.1password/agent.sock";
#
# in {
# programs.ssh ={
# enable = true;
@@ -22,6 +30,7 @@
# '';
# };
# }
programs = {
fastfetch.enable = true;
neovim.enable = true;
@@ -61,27 +70,6 @@
autosuggestion.enable = true;
#syntaxHighlighting.enable = true;
historySubstringSearch.enable = true;
plugins = [
{
name = "fast-syntax-highlighting";
src = pkgs.fetchFromGitHub {
owner = "zdharma-continuum";
repo = "fast-syntax-highlighting";
rev = "cf318e06a9b7c9f2219d78f41b46fa6e06011fd9";
sha256 = "RVX9ZSzjBW3LpFs2W86lKI6vtcvDWP6EPxzeTcRZua4=";
};
}
# {
# name = "ohmyzsh-theme-passion";
# file = "passion.zsh-theme";
# src = pkgs.fetchFromGitHub {
# owner = "ChesterYue";
# repo = "ohmyzsh-theme-passion";
# rev = "7f06398c0a3c046f80f6162047b64a1c0ab7f76d";
# sha256 = "uFEGxcqkdWCroZ0L3h4G4uE6C75bG6IDbDnptkbxgj0=";
# };
# }
];
shellAliases = {
ls = "eza --color=auto";
@@ -104,7 +92,8 @@
oh-my-zsh = {
enable = true;
custom = "~/.oh-my-zsh/custom";
custom = "$HOME/.ohmyzsh/custom";
plugins = ["fast-syntax-highlighting"];
theme = "passion";
};
};