about summary refs log tree commit diff
path: root/users/aspen/system/home/machines/lusca.nix
blob: 94d7fda4b5997ef5b8e017da72d47b8bbed0132e (plain) (blame)
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
{ pkgs, lib, config, ... }:

let
  inherit (builtins) pathExists;
in
{
  imports = [
    ../platforms/linux.nix
    ../modules/common.nix

    ../modules/email.nix
    ../modules/desktop.nix
  ] ++ (lib.optional (pathExists ../modules/private.nix)
    ../modules/private.nix);

  home.username = lib.mkForce "aspen";
  home.homeDirectory = lib.mkForce "/home/aspen";

  # for when hacking
  programs.home-manager.enable = true;
  home.stateVersion = "20.03";

  system.machine = {
    wirelessInterface = "wlp1s0";
    i3FontSize = 9;
    battery = 1;
  };

  home.packages = with pkgs; [ discord steam tdesktop ];

  xsession.windowManager.i3.config.keybindings.XF86AudioMedia = "exec lock";
}