aboutsummaryrefslogtreecommitdiff
path: root/hosts/lust/default.nix
blob: 9d0bfaf17f929e9be3492c44f47ccd41b104c08b (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
38
39
40
41
42
43
44
45
{
  config,
  lib,
  pkgs,
  ...
}:
{
  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 = {
      packages = with pkgs; [ audacity ];
      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";
}