1
0
Fork 0
nixos-config/home-manager/roles/tinkering.nix

17 lines
492 B
Nix
Raw Normal View History

2020-05-05 23:40:57 +00:00
{ pkgs, ... }: {
home.packages = builtins.attrValues {
inherit (pkgs.xorg) xev;
inherit (pkgs.gitAndTools) hub;
2020-05-27 13:20:08 +00:00
inherit (pkgs)
2020-06-27 15:02:09 +00:00
meld icedtea8_web octave filezilla nix-review gparted
2020-05-27 13:20:08 +00:00
grafana-devel;
2020-05-05 23:40:57 +00:00
};
2021-07-22 12:22:44 +00:00
home.file.".cabal/config".text = ''
repository hackage.haskell.org
url: http://hackage.haskell.org/
username: maralorn
password-command: ${pkgs.writeShellScript "hackage-pw" ''pass org/haskell/hackage.haskell.org/maralorn | head -n1''}
'';
2020-05-05 23:40:57 +00:00
}