summaryrefslogtreecommitdiff
path: root/home/nix/home.nix
blob: c4ee304657be2ee76cc7f7c517b2f65cb8c8f735 (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
30
31
{ config, pkgs, ... }:

{

  imports = [
    ./programs/firefox.nix
    ./programs/home-manager.nix
  ];

  news.display = "silent";
  fonts.fontconfig.enable = true;
  nixpkgs.config.allowUnfree = true;

  home = {
    packages = with pkgs; [
      # shell
      starship
      # desktop
      discord
      element-desktop
      thunderbird
      # rust
      rustc
      rustfmt
      rust-analyzer
      cargo
      clippy
    ];
  };
}