21 lines
220 B
Nix
21 lines
220 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports =
|
||
|
[
|
||
|
./zsh.nix
|
||
|
./git.nix
|
||
|
];
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
rustup
|
||
|
hyfetch
|
||
|
nix-output-monitor
|
||
|
alvr
|
||
|
firefox
|
||
|
tree
|
||
|
vesktop
|
||
|
kitty
|
||
|
];
|
||
|
}
|