23 lines
364 B
Nix
23 lines
364 B
Nix
{ inputs, outputs, config, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../../profile
|
|
];
|
|
|
|
activeProfiles = ["base" "hyprland" "productivity" "gaming"];
|
|
|
|
theme.minimal.enable = true;
|
|
|
|
home.sessionVariables.HN = "ooksdesk";
|
|
|
|
monitors = [{
|
|
name = "DP-1";
|
|
width = 2560;
|
|
height = 1440;
|
|
refreshRate = 155;
|
|
workspace = "1";
|
|
primary = true;
|
|
}];
|
|
}
|
|
|