Compare commits

..

3 Commits

Author SHA1 Message Date
b4e0d9f475 updated hyprland 2026-07-04 16:43:50 +01:00
59575477d5 fixed kitty and added to core 2026-07-04 16:43:46 +01:00
f3e93f9ae7 fixed carapace 2026-07-04 16:43:37 +01:00
4 changed files with 18 additions and 17 deletions

8
flake.lock generated
View File

@@ -282,11 +282,11 @@
"wshowkeys": "wshowkeys"
},
"locked": {
"lastModified": 1783173691,
"narHash": "sha256-t6ujNphnp5ix/WOrotyjORkSnt7YlpcU4segqd4bo2w=",
"lastModified": 1783179784,
"narHash": "sha256-9qyKPHXc2fK6oZxCXLV9q0WdyNYdgCpfiAouRf+ELrc=",
"ref": "refs/heads/main",
"rev": "a9b2d46580076ba05bd37637c8394d5e7c654bff",
"revCount": 36,
"rev": "bdd6ec3efa05c1130002808d4c2c4552bb20587a",
"revCount": 37,
"type": "git",
"url": "https://git.voidarc.co.uk/voidarc/hypr"
},

View File

@@ -8,10 +8,9 @@
lib,
...
}: {
programs.kitty = {
enable = true;
package = self.packages.${pkgs.stdenv.hostPlatform.system}.kitty;
};
environment.systemPackages = [
self.packages.${pkgs.stdenv.hostPlatform.system}.kitty
];
};
perSystem = {
pkgs,

View File

@@ -43,19 +43,20 @@
nsh = "nix-shell -p";
};
zshrc.content = ''
autoload -U compinit && compinit
# export CARAPACE_BRIDGES='zsh,fish,bash,inshellisense' # optional
zstyle ':completion:*' format $'\e[2;37mCompleting %d\e[m'
source <(${lib.getExe pkgs.carapace} _carapace)
autoload -U compinit && compinit
export CARAPACE_BRIDGES='zsh,fish,bash,inshellisense' # optional
zstyle ':completion:*' format $'\e[2;37mCompleting %d\e[m'
source <(${lib.getExe pkgs.carapace} _carapace)
zstyle ':completion:*' matcher-list 'm:{[:lower:]}={[:upper:]}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
setopt NO_CASE_GLOB
setopt NO_CASE_GLOB
export EDITOR=nvim
export EDITOR=nvim
eval "$(${lib.getExe pkgs.devenv} hook zsh)"
eval "$(${lib.getExe self.packages.${pkgs.host.stdenv.hostPlatform.system}.ohMyPosh} init zsh)"
eval "$(${lib.getExe pkgs.devenv} hook zsh)"
eval "$(${lib.getExe self.packages.${pkgs.host.stdenv.hostPlatform.system}.ohMyPosh} init zsh)"
${lib.getExe pkgs.any-nix-shell} zsh --info-right | source /dev/stdin
${lib.getExe pkgs.any-nix-shell} zsh --info-right | source /dev/stdin
'';
};
ohMyPosh = inputs.wrappers.wrappers.oh-my-posh.wrap {

View File

@@ -12,6 +12,7 @@
userConfiguration
hyprland
zsh
kitty
];
in {
imports =