summaryrefslogtreecommitdiff
path: root/home/nix/home.nix
blob: 587079457fc18194c740caf385c5f22c74ca69ac (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
32
33
34
35
36
37
38
39
{ config, pkgs, ... }: {

  imports = [
    ./programs
  ];

  news.display = "silent";
  fonts.fontconfig.enable = true;
  nixpkgs.config.allowUnfree = true;
  programs.home-manager.enable = true;

  home = {
    username = "freya";
    homeDirectory = "/home/freya";
    stateVersion = "25.05";

    packages = with pkgs; [
      # shell
      starship
      # desktop
      discord
      element-desktop
      thunderbird
      # rust
      rustc
      rustfmt
      rust-analyzer
      cargo
      clippy
      # unity
      unityhub
      # libs
      openssl
      libgcc
    ];

  };
}