This commit is contained in:
Lilith 2025-02-27 01:31:04 +01:00
parent c4eed0e32f
commit 44fc8ce456
Signed by: lilith
GPG key ID: 8712A0F317C37175
3 changed files with 13 additions and 0 deletions

3
system/bluetooth.nix Normal file
View file

@ -0,0 +1,3 @@
{...}: {
hardware.bluetooth.enable = true;
}

6
system/fonts.nix Normal file
View file

@ -0,0 +1,6 @@
{...}: {
fonts.packages = with pkgs; [
nerd-fonts.jetbrains-mono
twemoji-color-font
];
}

4
system/zsh.nix Normal file
View file

@ -0,0 +1,4 @@
{pkgs, ...}: {
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
}