summaryrefslogtreecommitdiff
path: root/hosts/shinji/default.nix
blob: 5c39012caa1ec3dc2f57bfd9b5d02f34e74b5403 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Shinji
# System configuration for my laptop
{pkgs, ...}: {
  imports = [
    ./hardware.nix
    ./sops.nix
    ./wireguard.nix
  ];

  # options
  hostName = "shinji";
  monitors = [
    {
      name = "eDP-1";
      scale = 1.25;
      bitdepth = 10;
    }
  ];

  # set power btn to suspend
  services.logind.extraConfig = ''
    HandlePowerKey=suspend
  '';

  # packages
  environment.systemPackages = with pkgs; [
    # wine
    winetricks
    wineWowPackages.staging
    # android
    android-tools
    scrcpy
    # misc
    foliate
    jami
    qbittorrent
  ];

  # modules
  browser = {
    firefox = true;
  };
  desktop = {
    enable = true;
    astal = true;
    hyprland = true;
    hyprlock = true;
    hypridle = true;
    hyprpaper = true;
  };
  development = {
    c = true;
    lua = true;
    rust = true;
    web = true;
  };
  gaming = {
    homestuck = true;
    minecraft = true;
    steam = true;
  };
  terminal = {
    kitty = true;
  };
}