- Formatted theme for Rofi - Moved Rofi config to .rasi file, because of troubles styling with programs.rofi - Added gnome-calculator and gnome-disk - Added GCC - Open Calc by pressing SUPER + K - Opens terminal in workspace 2 at boot
28 lines
444 B
Nix
28 lines
444 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
# IDEs
|
|
jetbrains.rust-rover
|
|
jetbrains.webstorm
|
|
vscodium # TODO set up extensions
|
|
# Tools
|
|
git
|
|
rustup
|
|
nodejs
|
|
pnpm
|
|
gcc # Required for C, Rust and others
|
|
# Formatters
|
|
nixd
|
|
];
|
|
|
|
virtualisation.docker = {
|
|
enable = true;
|
|
storageDriver = "btrfs";
|
|
rootless = {
|
|
enable = true;
|
|
setSocketVariable = true;
|
|
};
|
|
};
|
|
}
|