blob: 874d3c99d9cc5846ba7990aa3aa555ab7004dad8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ pkgs, ... }:
{
imports = [
../../modules/home/common.nix
../../modules/home/desktop.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";
}
|