mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 23:04:39 -05:00
115 current 2024-05-08 22:27:54 24.05.20240419.5c24cf2 6.6.28 *
This commit is contained in:
parent
13eac378c6
commit
b422dd8c72
1 changed files with 18 additions and 12 deletions
|
@ -1,16 +1,22 @@
|
|||
{ config, pkgs, inputs, ... }:
|
||||
{ config, lib, pkgs, inputs, ... }:
|
||||
|
||||
let
|
||||
cpkg = import ../../customPackages { inherit pkgs; };
|
||||
|
||||
zshInitArgs = [
|
||||
"source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme"
|
||||
"source ${pkgs.zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
|
||||
"[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh"
|
||||
"setopt globstarshort"
|
||||
];
|
||||
_z1 = lib.concatMapStrings (x: x + "\n") zshInitArgs;
|
||||
in
|
||||
{
|
||||
programs.zsh.enable = true;
|
||||
programs.zsh.oh-my-zsh.enable = true;
|
||||
programs.zsh.initExtra = "source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme" + "\n" + "source ${pkgs.zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" + "\n" + "[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh";
|
||||
programs.zsh.initExtra = builtins.trace _z1 _z1;
|
||||
|
||||
programs.zoxide.enable = true;
|
||||
programs.zoxide.enableZshIntegration = true;
|
||||
programs.zoxide.enable = true;
|
||||
programs.zoxide.enableZshIntegration = true;
|
||||
|
||||
|
||||
nixpkgs.config.allowUnfreePredicate = (pkg: true);
|
||||
|
@ -23,11 +29,11 @@ in
|
|||
|
||||
services = {
|
||||
flameshot = {
|
||||
enable = true;
|
||||
settings.General.showDesktopNotification = false;
|
||||
settings.General.startupLaunch = false;
|
||||
# settings.Shortcuts.TYPE_IMAGEUPLOADER = "";
|
||||
# settings.Shortcuts.TYPE_COPY = "Return";
|
||||
enable = true;
|
||||
settings.General.showDesktopNotification = false;
|
||||
settings.General.startupLaunch = false;
|
||||
# settings.Shortcuts.TYPE_IMAGEUPLOADER = "";
|
||||
# settings.Shortcuts.TYPE_COPY = "Return";
|
||||
};
|
||||
};
|
||||
# This value determines the Home Manager release that your configuration is
|
||||
|
|
Loading…
Reference in a new issue