Compare commits

...

2 Commits

Author SHA1 Message Date
02b7ac7e78 Tiling & Shortcuts™️ 2024-01-29 13:19:38 -05:00
5cf103d7da universeair: Add Bitwarden 2024-01-29 12:59:08 -05:00
4 changed files with 52 additions and 0 deletions

View File

@@ -2,7 +2,12 @@
in
{
imports = [
# Install Apps Detactable by Spotlight
./app-fix.nix
# Tiling Window Manager
./yabai.nix
# Shortcuts babe, not Automator
./skhd.nix
];
nix.registry.nixpkgs.flake = inputs.nixpkgs;
nixpkgs.config.allowUnfree = true;
@@ -79,6 +84,7 @@ in
"firefox"
"nextcloud"
"tidal"
"bitwarden"
];
# Apps to install outside of nix for when wanting to test/run
# things that... aren't used by other people who use nix, like

View File

@@ -0,0 +1,27 @@
{config, pkgs, lib, ...}: {
services.sketchybar = {
enable = true;
config = ''
##### Bar Appearance #####
# Configuring the general appearance of the bar, these are only some of the
# options available. For all options see:
# https://felixkratz.github.io/SketchyBar/config/bar
# If you are looking for other colors, see the color picker:
# https://felixkratz.github.io/SketchyBar/config/tricks#color-picker
sketchybar --bar height=32 \
blur_radius=30 \
position=top \
sticky=off \
padding_left=10 \
padding_right=10 \
color=0x15ffffff
##### Finalizing Setup #####
# The below command is only needed at the end of the initial configuration to
# force all scripts to run the first time, it should never be run in an item script.
sketchybar --update
'';
};
}

View File

@@ -0,0 +1,7 @@
{config, pkgs, lib, ...}: {
services.skhd = {
enable = true;
skhdConfig = ''
'';
};
}

View File

@@ -0,0 +1,12 @@
{config, pkgs, lib, ...}: {
imports = [
# Custom Bar
./sketchybar.nix
];
services.yabai = {
enable = true;
config = {
};
};
}