mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 20:03:55 -05:00
19 lines
305 B
Nix
19 lines
305 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./common.nix
|
||
|
./gnome
|
||
|
./alacritty
|
||
|
];
|
||
|
|
||
|
# Packages that should be installed to the user profile.
|
||
|
home.packages = with pkgs; [
|
||
|
# warp-terminal
|
||
|
discord
|
||
|
github-desktop
|
||
|
obsidian
|
||
|
vscode
|
||
|
];
|
||
|
}
|