nixos-configuration/development.nix
Martin Berg Alstad 69fff69c65
🖼 Styled Rofi, calc and disk apps, gcc
- 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
2025-01-01 19:00:38 +01:00

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;
};
};
}