18 lines
393 B
Nix
18 lines
393 B
Nix
# This module is for programs with GUIs that run in a desktop environment
|
|
{ self, inputs, ... }: {
|
|
flake.modules.homeManager.desktop = { config, pkgs, lib, ... }: {
|
|
imports = with inputs.self.modules.homeManager; [
|
|
brave
|
|
ghostty
|
|
onepassword
|
|
vscode
|
|
];
|
|
home.packages = with pkgs; [
|
|
discord
|
|
mangohud
|
|
sublime4
|
|
proton-vpn
|
|
];
|
|
};
|
|
}
|