diff --git a/modules/users/jopejoe1/default.nix b/modules/users/jopejoe1/default.nix index 721895b..36e4918 100644 --- a/modules/users/jopejoe1/default.nix +++ b/modules/users/jopejoe1/default.nix @@ -16,6 +16,9 @@ libreoffice-qt texlive.combined.scheme-full tela-icon-theme + lutris + bottles + google-chrome ]; openssh.authorizedKeys.keys = [ "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCUWMJyy2qq2aacVv/J5raugh7UKEmCs+JpagQh30mYqwLV9YQtOfZ+A3Q1qOOLPHTTciLydsfz8K2jBGXEv49uqz9P33aw63RzSaLdcnXhBJRmZvJ3AujLBKDIo24PLOVasogtu01eyQALTg4npX+qlti2UsxLY5O8E5paFJvJ+5rGE3/34c4xA9xthUm7G7SCSt4AhVXwPGB1tqz1KLqGdTJQhvy80laEDSV4tAYpiabmjhNFKGpf8T7afnw1MzKXz+ba6exBcGaJfy2Q24DLztZsW7fsTE1iCdkbcmos9/jUR6NooKFgDr0M4CL2TVZB5pECSiOev06GMnLt+vpxjFL29YeGMaVMmNCedkL1z1mftbXLEL7934kEK9FpEpSwzbRTJ7iPvfYZuTHiT6fi2Ep7n+zzRS+/ZgDUDLSqZYEBmE4dO4LgcqzOsJo5EgoyLGoqQ4OpvPRY12T3rCWUfEgOCXgToF0WlUyxCaPZCfvUjM4LXNlIy/dtivMxMs8= jopejoe1@yokai" diff --git a/modules/users/jopejoe1/home.nix b/modules/users/jopejoe1/home.nix index 9325297..04df813 100644 --- a/modules/users/jopejoe1/home.nix +++ b/modules/users/jopejoe1/home.nix @@ -37,7 +37,7 @@ in { stateHome = "${hcfg.home.homeDirectory}/.local/state"; userDirs = { enable = true; - createDirectories = false; + createDirectories = true; desktop = "${hcfg.home.homeDirectory}/Desktop"; documents = "${hcfg.home.homeDirectory}/Documents"; download = "${hcfg.home.homeDirectory}/Downloads"; @@ -47,6 +47,17 @@ in { templates = "${hcfg.home.homeDirectory}/Templates"; videos = "${hcfg.home.homeDirectory}/Videos"; }; + desktopEntries = { + discord = { + name = "Discord"; + exec = "Discord --disable-gpu-sandbox"; + icon = "discord"; + terminal = false; + genericName = "All-in-one cross-platform voice and text chat for gamers"; + categories = [ "Network" "InstantMessaging" ]; + mimeTypes = [ "x-scheme-handler/discord" ]; + }; + }; }; programs = { home-manager.enable = true;