Global, Hypr, Systems, Flake update 2024-10-21

Refactored systems to be dependant on host. So that jibril and onizuka
can have separate profiles. Doing this split up the systems/ folder, and
also forced a flake update to test. This was done midway through the
hypr rework, and would have been difficult to decouple, so I just did a
big commit instead <3

Refactored the entire hypr system to use settings and nix rather than
its native config. This is working and tested on Jibril, but is missing
the scripts used for switching workspaces on Onizuka.
This commit is contained in:
Julia Lange 2024-10-12 21:19:23 -07:00
parent c1351567cc
commit bb2c29495c
16 changed files with 572 additions and 274 deletions

View file

@ -3,6 +3,7 @@
{
options.librewolf = {
enable = lib.mkEnableOption "Enables librewolf";
make_default = lib.mkEnableOption "Makes librewolf the default browser";
};
config = lib.mkIf config.librewolf.enable {
@ -12,5 +13,6 @@
home.sessionVariables = {
BROWSER = "librewolf";
};
defaultApps.browser = lib.mkIf config.librewolf.make_default "librewolf";
};
}