tvl-depot/users/aspen/system/home/machines/lusca.nix
Aspen Smith 238c122b9c feat(aspen/lusca): tweak alacritty font size; install slack
Change-Id: I14dd872fb3b6f495e57f3e538486c5fad901ccc2
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11477
Autosubmit: aspen <root@gws.fyi>
Tested-by: BuildkiteCI
Reviewed-by: aspen <root@gws.fyi>
2024-04-19 15:54:14 +00:00

34 lines
761 B
Nix

{ 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;
};
programs.alacritty.settings.font.size = lib.mkForce 5.5;
home.packages = with pkgs; [ discord steam tdesktop slack ];
xsession.windowManager.i3.config.keybindings.XF86AudioMedia = "exec lock";
}