1
0
Fork 0
nixos-config/home-manager/roles/tinkering.nix
2021-11-20 02:05:07 +01:00

16 lines
403 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
'';
}