mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
19 lines
307 B
Nix
19 lines
307 B
Nix
{pkgs, ...}: {
|
|
# services.aerospace.enable = true;
|
|
|
|
imports = [
|
|
# ../fish.nix
|
|
];
|
|
|
|
users.users."tyler.mayoff".shell = pkgs.fish;
|
|
|
|
services.sketchybar.enable = true;
|
|
|
|
system.stateVersion = 5;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
pinentry_mac
|
|
];
|
|
|
|
programs.fish.enable = true;
|
|
}
|