1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/configs/sncli.nix

14 lines
326 B
Nix
Raw Permalink Normal View History

2019-04-19 15:02:05 +02:00
{ pkgs, ... }:
let secrets = import <dot/secrets.nix>;
in {
2019-05-15 23:42:37 +02:00
environment.systemPackages = [ pkgs.python3Packages.sncli ];
2019-04-19 15:02:05 +02:00
home-manager.users.me = {
home.file.".snclirc".text = ''
[sncli]
cfg_sn_username = ${secrets.simplenote.username}
cfg_sn_password = ${secrets.simplenote.password}
'';
};
}