mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
15 lines
364 B
Nix
15 lines
364 B
Nix
{ pkgs, lib, ... }:
|
|
let secrets = import <dot/secrets.nix>;
|
|
in {
|
|
environment.systemPackages = [ pkgs.python3Packages.sncli ];
|
|
|
|
home-manager.users.me = {
|
|
home.file.".snclirc".text = lib.generators.toINI {} {
|
|
sncli = {
|
|
cfg_sn_username = secrets.simplenote.username;
|
|
cfg_sn_password = secrets.simplenote.password;
|
|
};
|
|
};
|
|
};
|
|
}
|