1
0
Fork 0
nixos-config/home-manager/roles/tinkering.nix
2022-12-08 00:57:34 +01:00

36 lines
772 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.".editorconfig".text = ''
# Top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file, utf-8 charset
[*]
indent_size = 3
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8
'';
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
'';
};
}