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

20 lines
478 B
Nix
Raw Normal View History

2020-05-05 23:40:57 +00:00
{ pkgs, ... }: {
home.packages = builtins.attrValues {
inherit (pkgs.xorg) xev;
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
2021-07-31 10:29:31 +00:00
password-command: pass org/haskell/hackage.haskell.org/maralorn
2021-07-22 12:22:44 +00:00
'';
2022-02-14 17:54:54 +00:00
programs.vscode = {
enable = true;
package = pkgs.vscodium;
};
2020-05-05 23:40:57 +00:00
}