mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 15:11:34 +01:00
32 lines
561 B
Nix
32 lines
561 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
wrappers,
|
|
...
|
|
}:
|
|
{
|
|
myConfig = {
|
|
shell.zsh.enable = true;
|
|
git.enable = true;
|
|
vscode.enable = true;
|
|
equalizer.enable = true;
|
|
sops.enable = false;
|
|
night-light.enable = true;
|
|
};
|
|
|
|
home.packages = [
|
|
pkgs.fastfetch
|
|
|
|
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
|
|
];
|
|
}
|