blob: bf0f1adcda7b11aa31870441b285eaa0a6c19f85 (
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
|
{
config,
lib,
pkgs,
...
}:
{
imports = [
../../common/pipewire.nix
../../common/region/na-east.nix
../../common/steam.nix
];
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";
}
|