Udiskie, KDE Connect, and Config Cleanup

- Move shell and font configs out of configuration.nix
  and into separate files
- Add udiskie to dwm
- Add kdeconnect for phone connection
This commit is contained in:
Sravan Balaji
2024-03-31 09:27:11 -04:00
parent e397b4a2ed
commit b51a77befa
7 changed files with 24 additions and 9 deletions

View File

@ -66,6 +66,9 @@
# Notification Daemon
deadd-notification-center
# Automounter
udiskie
# Polybar with DWM Module
(polybar.overrideAttrs (finalAttrs: previousAttrs: {
pname = previousAttrs.pname + "-dwm-module";

View File

@ -1,6 +1,8 @@
{ config, lib, pkgs, ... }:
{
fonts.fontDir.enable = true;
fonts.packages = with pkgs; [
corefonts
ubuntu_font_family

View File

@ -7,5 +7,6 @@
./miscellaneous.nix
./gaming.nix
./backups.nix
./user-shell.nix
];
}

View File

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
environment.shells = with pkgs; [ zsh ];
users.defaultUserShell = pkgs.zsh;
programs.zsh.enable = true;
}