summaryrefslogtreecommitdiff
path: root/profiles/station
diff options
context:
space:
mode:
authorMike Vink <mike1994vink@gmail.com>2023-10-16 23:16:01 +0200
committerMike Vink <mike1994vink@gmail.com>2023-10-16 23:25:42 +0200
commitd885924961b3c4b3db76b78e603c0cc84ff88aae (patch)
treec152dcd1e54806adfe9fdb13d8f4efad393f9317 /profiles/station
parente5957fa18a322338b2f75afd62e32cdb84143236 (diff)
stuff
Diffstat (limited to 'profiles/station')
-rw-r--r--profiles/station/irc.nix21
-rw-r--r--profiles/station/music.nix14
2 files changed, 27 insertions, 8 deletions
diff --git a/profiles/station/irc.nix b/profiles/station/irc.nix
index 8e9cf8a..9feb293 100644
--- a/profiles/station/irc.nix
+++ b/profiles/station/irc.nix
@@ -1,5 +1,5 @@
{...}: {
- programs.tiny = {
+ hm.programs.tiny = {
enable = true;
settings = {
servers = [
@@ -8,15 +8,20 @@
port = 6697;
tls = true;
realname = "Mike Vink";
- nicks = [ "ivi" ];
+ nicks = [ "ivi-v" ];
+ join = ["#nixos"];
+ sasl = {
+ username = "ivi-v";
+ password.command = "pass show personal/liberachat";
+ };
}
];
- };
- defaults = {
- nicks = [ "ivi" ];
- realname = "Mike Vink";
- join = [];
- tls = true;
+ defaults = {
+ nicks = [ "ivi-v" ];
+ realname = "Mike Vink";
+ join = [];
+ tls = true;
+ };
};
};
}
diff --git a/profiles/station/music.nix b/profiles/station/music.nix
new file mode 100644
index 0000000..085534e
--- /dev/null
+++ b/profiles/station/music.nix
@@ -0,0 +1,14 @@
+{ pkgs, ... }: {
+ services.mopidy = {
+ enable = true;
+ extensionPackages = with pkgs; [mopidy-spotify];
+ extraConfigFiles = [
+ ];
+ };
+ hm.programs.ncmpcpp = {
+ enable = true;
+ bindings = [
+ { key = "+"; command = "show_clock"; }
+ ];
+ };
+}