finalise dendritic migration

This commit is contained in:
William 2026-02-15 17:32:03 -03:00
parent 1075c256f8
commit 472aabee2a
3 changed files with 52 additions and 38 deletions

View file

@ -13,7 +13,7 @@
];
};
homeManager.programs-media =
homeManager.media =
{ pkgs, ... }:
{
programs.obs-studio = {

View file

@ -1,6 +1,7 @@
{ inputs, ... }:
{
flake.modules.nixos.base =
flake.modules = {
nixos.base =
{ lib, pkgs, ... }:
{
imports = with inputs.self.modules.nixos; [
@ -41,4 +42,14 @@
};
};
};
homeManager.base =
{ ... }:
{
imports = with inputs.self.modules.homeManager; [
bash
fish
];
};
};
}

View file

@ -158,7 +158,10 @@
...
}:
{
imports = [ inputs.vicinae.homeManagerModules.default ];
imports = [
inputs.vicinae.homeManagerModules.default
]
++ (with inputs.self.modules.homeManager; [ media ]);
fonts.fontconfig.enable = true;