28 lines
612 B
Nix
28 lines
612 B
Nix
{ config, pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
gparted
|
|
htop
|
|
libarchive
|
|
lf
|
|
msr-tools
|
|
ncdu
|
|
neovim
|
|
rsync
|
|
wget
|
|
|
|
gnome3.nautilus
|
|
|
|
(pkgs.writeShellScriptBin "nix-flakes" ''
|
|
exec ${pkgs.nixUnstable}/bin/nix --experimental-features "nix-command flakes" "$@"
|
|
'')
|
|
];
|
|
environment.variables.EDITOR = "nvim";
|
|
|
|
programs.light.enable = true;
|
|
hardware.opentabletdriver.enable = true;
|
|
programs.steam.enable = true;
|
|
services.dbus.packages = [ pkgs.gnome3.dconf ];
|
|
services.gnome.sushi.enable = true;
|
|
services.ipfs.enable = true;
|
|
}
|