add bluetooth

This commit is contained in:
zoe 2022-10-31 16:45:04 +01:00
parent efa2fbc532
commit 7f859fa821
5 changed files with 17 additions and 1 deletions

View File

@ -82,6 +82,10 @@
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
# enable bluetooth
hardware.bluetooth.enable = true;
security.rtkit.enable = true;
services.pipewire = {
enable = true;

9
dunst/settings.nix Normal file
View File

@ -0,0 +1,9 @@
{ ... }:
{
enable = true;
settings = {
global = {
font = "CaskaydiaCove Nerd Font 12";
};
};
}

View File

@ -6,6 +6,7 @@ let
rofiCustom = import ./rofi/settings.nix;
i3Custom = import ./i3/settings.nix;
i3StatusCustom = import ./i3/i3status-rust.nix;
dunstCustom = import ./dunst/settings.nix;
in
{
home-manager.users.zoe = { pkgs, ... }: {
@ -21,6 +22,7 @@ in
programs.fish = fishCustom pkgs;
programs.rofi = rofiCustom pkgs;
programs.i3status-rust = i3StatusCustom pkgs;
services.dunst = dunstCustom pkgs;
xsession.windowManager.i3 = i3Custom pkgs;
programs.git = {

View File

@ -10,7 +10,7 @@ nixpkgs-fmt *.nix ./*/*.nix
# cp -r /etc/nixos/ ./backup
# copy over all the files to /etc/nixos/
sudo cp -r ./configuration.nix ./wallpaper.png ./rofi ./i3 ./fish ./kitty ./nvim/ ./packages.nix ./home.nix ./services.nix ./user.nix /etc/nixos/
sudo cp -r ./configuration.nix ./wallpaper.png ./dunst ./rofi ./i3 ./fish ./kitty ./nvim/ ./packages.nix ./home.nix ./services.nix ./user.nix /etc/nixos/
# build penrose and copy it to nixos folder
# cd ./penrose

View File

@ -80,6 +80,7 @@
# system tools
htop
blueberry
];
};