You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
463 B
Nix

{pkgs, lib, ... }:
{
home.homeDirectory = "/home/dustinswan";
home.packages = with pkgs; [
# retroarch gimp blender
brave
ghostty
bitwarden-desktop
nerd-fonts.iosevka
high-tide tidal-hifi
deskflow
];
# home.keyboard.options = [ "ctrl:nocaps" "compose:ralt" ];
programs.vicinae = {
enable = true;
};
services.syncthing = {
enable = true;
};
imports = [ ./home-cli.nix ./home-gui.nix ./home-mail.nix ];
}