profiles#im: init

This commit is contained in:
Timothy DeHerrera 2020-06-20 14:02:31 -06:00
parent 43820d08fc
commit 37dac0d77d
No known key found for this signature in database
GPG Key ID: 8985725DB5B0C122
2 changed files with 9 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{ config, pkgs, ... }:
let inherit (builtins) readFile;
in {
imports = [ ./sway ../develop ./xmonad ../networkmanager ];
imports = [ ./sway ../develop ./xmonad ../networkmanager ../im ];
hardware.opengl.enable = true;
hardware.opengl.driSupport = true;

8
profiles/im/default.nix Normal file
View File

@ -0,0 +1,8 @@
{ unstablePkgs, ... }: {
environment.systemPackages = with unstablePkgs; [
discord
riot-desktop
signal-desktop
];
}