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

15 lines
371 B
Nix
Raw Normal View History

2019-09-25 18:37:08 +02:00
{ pkgs, lib, ... }:
2019-10-26 13:43:30 +02:00
let secrets = import <niveum/dot/secrets.nix>;
2019-04-19 15:02:05 +02:00
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 = {
2019-09-25 18:37:08 +02:00
home.file.".snclirc".text = lib.generators.toINI {} {
sncli = {
cfg_sn_username = secrets.simplenote.username;
cfg_sn_password = secrets.simplenote.password;
};
};
2019-04-19 15:02:05 +02:00
};
}