tangled
alpha
login
or
join now
da157.id
/
nix-config
0
fork
atom
0xda157's home-manager and nixos config
0
fork
atom
overview
issues
pulls
pipelines
moverio display config
0xda157
2 months ago
de408919
8a695adb
0/1
check.yml
failed
44s
+25
-6
1 changed file
expand all
collapse all
unified
split
modules
hosts
nixos
enceladus
default.nix
+25
-6
modules/hosts/nixos/enceladus/default.nix
···
21
21
tuned.enable = true;
22
22
};
23
23
24
24
-
monitors = lib.singleton {
25
25
-
name = "eDP-1";
26
26
-
width = 2256;
27
27
-
height = 1504;
28
28
-
scale = 1.333;
29
29
-
};
24
24
+
monitors = [
25
25
+
{
26
26
+
name = "eDP-1";
27
27
+
width = 2256;
28
28
+
height = 1504;
29
29
+
scale = 1.333;
30
30
+
}
31
31
+
{
32
32
+
name = "desc:Seiko Epson Corporation EPSON HMD 0x00000001";
33
33
+
width = 1920;
34
34
+
height = 1080;
35
35
+
y = -1080;
36
36
+
}
37
37
+
];
30
38
};
31
39
32
40
boot.kernelPatches = [
···
94
102
settings = import ./fcitx5-settings.nix;
95
103
};
96
104
};
105
105
+
106
106
+
services.hyprpaper.settings =
107
107
+
let
108
108
+
image =
109
109
+
pkgs.runCommand "black-pixel.png" { }
110
110
+
"${lib.getExe' pkgs.imagemagick "convert"} xc:#000000 png32:$out";
111
111
+
in
112
112
+
{
113
113
+
preload = [ "${image}" ];
114
114
+
wallpaper = [ "desc:Seiko Epson Corporation EPSON HMD 0x00000001,${image}" ];
115
115
+
};
97
116
};
98
117
}