nixfiles/hosts/slab/home.nix

18 lines
274 B
Nix

{ lib, pkgs, osConfig, ... }:
{
imports = [
../../home
];
config = {
nixfiles = {
profile.base.enable = true;
};
home.stateVersion = "23.11";
wayland.windowManager.hyprland.settings = {
monitor = ",preferred,auto,1.25";
};
};
}