about summary refs log tree commit diff
path: root/users/glittershark/system/home/machines/yeren.nix
blob: 43f59d375159084690d7babbb422ecea09da3d06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs, lib, config, ... }:

{
  imports = [
    ../platforms/linux.nix
    ../modules/common.nix
  ];

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

  system.machine = {
    wirelessInterface = "wlp0s20f3";
    i3FontSize = 9;
  };
}