1
0
Fork 0
nixos-config/home-manager/roles/tinkering.nix
2022-02-14 18:54:54 +01:00

19 lines
478 B
Nix

{ pkgs, ... }: {
home.packages = builtins.attrValues {
inherit (pkgs.xorg) xev;
inherit (pkgs)
meld icedtea8_web octave filezilla nix-review gparted
grafana-devel;
};
home.file.".cabal/config".text = ''
repository hackage.haskell.org
url: http://hackage.haskell.org/
username: maralorn
password-command: pass org/haskell/hackage.haskell.org/maralorn
'';
programs.vscode = {
enable = true;
package = pkgs.vscodium;
};
}