mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 20:43:56 -05:00
23 lines
369 B
Nix
23 lines
369 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./common.nix
|
||
|
./shell
|
||
|
./hypr
|
||
|
./waybar
|
||
|
./mako
|
||
|
./bemenu
|
||
|
./alacritty
|
||
|
];
|
||
|
|
||
|
# Packages that should be installed to the user profile.
|
||
|
home.packages = with pkgs; [
|
||
|
# warp-terminal
|
||
|
discord
|
||
|
github-desktop
|
||
|
obsidian
|
||
|
vscode
|
||
|
];
|
||
|
}
|