From 44fc8ce45650958caff59d393c231e0d87bff9a3 Mon Sep 17 00:00:00 2001 From: Lilith Date: Thu, 27 Feb 2025 01:31:04 +0100 Subject: [PATCH] system --- system/bluetooth.nix | 3 +++ system/fonts.nix | 6 ++++++ system/zsh.nix | 4 ++++ 3 files changed, 13 insertions(+) create mode 100644 system/bluetooth.nix create mode 100644 system/fonts.nix create mode 100644 system/zsh.nix diff --git a/system/bluetooth.nix b/system/bluetooth.nix new file mode 100644 index 00000000..6dc8d175 --- /dev/null +++ b/system/bluetooth.nix @@ -0,0 +1,3 @@ +{...}: { + hardware.bluetooth.enable = true; +} diff --git a/system/fonts.nix b/system/fonts.nix new file mode 100644 index 00000000..3505b118 --- /dev/null +++ b/system/fonts.nix @@ -0,0 +1,6 @@ +{...}: { + fonts.packages = with pkgs; [ + nerd-fonts.jetbrains-mono + twemoji-color-font + ]; +} diff --git a/system/zsh.nix b/system/zsh.nix new file mode 100644 index 00000000..ad14ac47 --- /dev/null +++ b/system/zsh.nix @@ -0,0 +1,4 @@ +{pkgs, ...}: { + programs.zsh.enable = true; + users.defaultUserShell = pkgs.zsh; +}