blob: 1eb223e750692cb5798b3cf40f9b9ed05e3b2c24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ pkgs, ... }:
{
imports = [
../../modules/home/common.nix
];
xdg.configFile = {
# monitor configuration for user, for user session and shell
# gdm runs outside of the user session, and we also set monitors
# for it, in ./default.nix
"monitors.xml" = {
source = ../../configs/monitors.xml;
force = true; # overwrite on change so that the source of truth is the declarative version
};
};
home.stateVersion = "23.11";
}
|