aboutsummaryrefslogtreecommitdiff
path: root/hosts/lust/default.nix
blob: 733c5d53a720a11241e8b6d82f5f6452b4182c74 (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
33
34
35
36
37
{ config, lib, ... }:
{
  imports = [
    ../../common/pipewire.nix
    ../../common/region/na-east.nix
  ];

  greeters.tuigreet = {
    enable = true;
    time = true;
  };

  home-manager.users.rosa = {
    imports = [ ../../modules/user ];
    desktop.windowManager = "swayfx";
    home.stateVersion = lib.mkForce "23.05"; # homedir been around for a while
    programs = {
      foot.settings.main = {
        dpi-aware = lib.mkForce false; # mismatched monitors
        font = lib.mkForce "FiraCode Nerd Font Mono:size=11"; # why do things never work
      };

      fuzzel.settings.main = {
        dpi-aware = lib.mkForce false;
        font = lib.mkForce "Fira Code:size=11"; # aaaaa
      };

      iamb.enable = true;
      vesktop.enable = true;
    };

  };

  networking.networkmanager.enable = true;
  programs.swayfx.enable = true;
  system.stateVersion = "23.05";
}