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;