mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 21:01:34 +01:00
32 lines
550 B
Nix
32 lines
550 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
wrappers,
|
|
...
|
|
}:
|
|
{
|
|
myConfig = {
|
|
shell.zsh.enable = true;
|
|
git.enable = true;
|
|
vscode.enable = true;
|
|
equalizer.enable = true;
|
|
night-light.enable = true;
|
|
};
|
|
|
|
home.packages = [
|
|
pkgs.fastfetch
|
|
pkgs.just
|
|
|
|
pkgs.cinnamon.nemo-with-extensions
|
|
pkgs.jetbrains.idea-community
|
|
pkgs.celluloid
|
|
pkgs.onlyoffice-bin_latest
|
|
|
|
wrappers.bottom
|
|
wrappers.spotify
|
|
wrappers.obsidian
|
|
wrappers.webcord
|
|
(wrappers.kitty { inherit (config.myConfig) theme; })
|
|
wrappers.firefox
|
|
];
|
|
}
|