slab: switch home.nix to nixfiles options

This commit is contained in:
NullBite 2024-02-09 08:22:55 +01:00
parent 4d35cc1154
commit b693ff3a00
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

View File

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