17 lines
343 B
Nix
17 lines
343 B
Nix
# 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
|
|
vscode
|
|
];
|
|
home.packages = with pkgs; [
|
|
mangohud
|
|
sublime4
|
|
];
|
|
};
|
|
}
|