1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-09-12 17:17:57 +00:00
This commit is contained in:
RGBCube 2025-08-04 20:23:20 +03:00
parent 30791ae627
commit af7f066097
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
3 changed files with 8 additions and 5 deletions

View file

@ -89,7 +89,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};
fenix.url = "github:nix-community/fenix";
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
nix.url = "github:DeterminateSystems/nix-src";
nil.url = "github:oxalica/nil";

View file

@ -1,4 +1,4 @@
{ config, ... }: {
{
system.defaults.dock = {
autohide = true;
showhidden = true; # Translucent.
@ -14,8 +14,7 @@
enable-spring-load-actions-on-all-items = true;
persistent-apps = [
{ app = "${config.home-manager.users.${config.system.primaryUser}
.programs.zen-browser.package}/Applications/Zen Browser (Beta).app"; }
{ app = "/Applications/Zen.app"; }
{ app = "/Applications/Ghostty.app"; }
];
};

View file

@ -225,7 +225,7 @@ in {
hs.hotkey.bind(super, "f", PaperWM.actions.toggle_floating)
-- APPLICATIONS
hs.hotkey.bind(super, "w", function() hs.application.launchOrFocus("Zen Browser (Beta)") end)
hs.hotkey.bind(super, "w", function() hs.application.launchOrFocus("Zen") end)
hs.hotkey.bind(super, "return", function() hs.application.launchOrFocus("Ghostty") end)
hs.hotkey.bind(super, "t", function() hs.application.launchOrFocus("Finder") end)