aboutsummaryrefslogtreecommitdiff
path: root/hosts/adam/home.nix
blob: 8f22d9794a4b31fc70ee752a91cbd0ff7c325587 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ pkgs, username, ... }:

{
  imports = [
    ../../modules/home-manager
  ];

      noto-fonts-cjk-sans
    noto-fonts-emoji
  ];

  programs.zsh.shellAliases = {
    open = "xdg-open";
  };

  dev.enable = true;

  sway.enable = true;
  foot.enable = true;
  waybar.enable = true;
  dunst.enable = true;
  hyprlock.enable = true;

  spicetify.enable = true;
  zathura.enable = true;
  nixcord.enable = true;

  home.stateVersion = "25.05";
}