aboutsummaryrefslogtreecommitdiff
path: root/hosts/lust/default.nix
blob: ba5c3dc009087044a2c1ee2e298a8a076d22f331 (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
46
47
48
49
50
51
{
  config,
  lib,
  pkgs,
  ...
}:
{
  imports = [
    ../../common/pipewire.nix
    ../../common/region/na-east.nix
    ../../common/steam.nix
  ];

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

  home-manager.users.rosa = {
    imports = [ ../../modules/user ];
    desktop = {
      accent = "pink";
      windowManager = "sway";
    };

    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.sway.enable = true;
  system.stateVersion = "23.05";
}