From ca4e157a7629a8bae9e0dc29010e97f58cba0630 Mon Sep 17 00:00:00 2001 From: noe Date: Thu, 14 Dec 2023 23:03:37 -0500 Subject: [PATCH] vesktop: --- nixos/features/discord.nix | 5 +++++ nixos/hosts/cider/default.nix | 1 + 2 files changed, 6 insertions(+) create mode 100644 nixos/features/discord.nix diff --git a/nixos/features/discord.nix b/nixos/features/discord.nix new file mode 100644 index 0000000..d1faaf9 --- /dev/null +++ b/nixos/features/discord.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: { + environment.systemPackages = [ + pkgs.vesktop + ]; +} diff --git a/nixos/hosts/cider/default.nix b/nixos/hosts/cider/default.nix index c2c1642..578c977 100644 --- a/nixos/hosts/cider/default.nix +++ b/nixos/hosts/cider/default.nix @@ -7,6 +7,7 @@ ../../features/xfce.nix #TODO: sound may be wrong ../../features/wifi.nix + ../../features/discord.nix ]; home-manager.users.noe = import ../../../home-manager/noe/hosts/cider.nix;