mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
14 lines
253 B
Nix
14 lines
253 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../home
|
|
];
|
|
|
|
# The home.packages option allows you to install Nix packages into your
|
|
# environment.
|
|
home.packages = with pkgs; [
|
|
discord # All-in-one cross-platform voice and text chat for gamers
|
|
];
|
|
}
|