desktop fixes

This commit is contained in:
John Lancaster
2026-03-26 17:11:33 -05:00
parent 338ef34212
commit 71a04c627a
5 changed files with 28 additions and 20 deletions
+15
View File
@@ -0,0 +1,15 @@
# This module is for programs with GUIs that run in a desktop environment
{ inputs, ... }:
{
flake.modules.homeManager.desktop = { pkgs, ... }: {
imports = with inputs.self.modules.homeManager; [
brave
ghostty
onepassword
];
home.packages = with pkgs; [
mangohud
sublime4
];
};
}