mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 23:11:34 +01:00
39 lines
907 B
Nix
39 lines
907 B
Nix
{pkgs, ...}: {
|
|
myConfig = {
|
|
de = {
|
|
qtile.enable = true;
|
|
wallpaper = ./wallpaper;
|
|
theming.enable = true;
|
|
tray.syncthing.enable = true;
|
|
};
|
|
vscode.enable = true;
|
|
shell = {
|
|
bash.enable = true;
|
|
starship.enable = true;
|
|
nixAliases.enable = true;
|
|
improvedCommands.enable = true;
|
|
direnv.enable = true;
|
|
};
|
|
ssh-client.enable = true;
|
|
git.enable = true;
|
|
neovim.enable = true;
|
|
kitty.enable = true;
|
|
};
|
|
|
|
programs.btop.enable = true;
|
|
|
|
home.packages = with pkgs; [
|
|
notepadqq
|
|
brave
|
|
spotify
|
|
cinnamon.nemo-with-extensions
|
|
discord
|
|
flameshot
|
|
jetbrains.idea-community
|
|
vlc
|
|
obs-studio
|
|
libsForQt5.kdenlive
|
|
gimp
|
|
onlyoffice-bin_latest
|
|
];
|
|
}
|