24 lines
458 B
Nix
24 lines
458 B
Nix
{ lib, pkgs, osConfig, config, ... }:
|
|
{
|
|
imports = [
|
|
../../home
|
|
];
|
|
|
|
config = {
|
|
nixfiles = {
|
|
profile.base.enable = true;
|
|
|
|
common.wm.keybinds = {
|
|
Launch1="playerctl play-pause"; # ROG key
|
|
# Launch3="true"; # AURA fn key
|
|
# Launch4="true"; # fan control fn key
|
|
};
|
|
};
|
|
home.stateVersion = "23.11";
|
|
|
|
wayland.windowManager.hyprland.settings = {
|
|
monitor = ",preferred,auto,1.25";
|
|
};
|
|
};
|
|
}
|