mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-22 12:26:06 -07:00
Compare commits
5 Commits
13ae39db7d
...
cb33f4be44
Author | SHA1 | Date | |
---|---|---|---|
cb33f4be44 | |||
9748f9993e | |||
63d91bf870 | |||
a1e02cf7b2 | |||
041955c98e |
@ -51,6 +51,7 @@ in {
|
|||||||
"ManagedBookmarks" = [
|
"ManagedBookmarks" = [
|
||||||
{ "toplevel_name" = "Bookmarks"; }
|
{ "toplevel_name" = "Bookmarks"; }
|
||||||
{ "name" = "Daily"; "children" = [
|
{ "name" = "Daily"; "children" = [
|
||||||
|
{ "url" = "https://lc.tstarr.us"; name = "Chisme Mattermost"; }
|
||||||
{ "url" = "https://rss.tstarr.us"; name = "Miniflux"; }
|
{ "url" = "https://rss.tstarr.us"; name = "Miniflux"; }
|
||||||
{ "url" = "https://cloud.tstarr.us"; name = "Nextcloud"; }
|
{ "url" = "https://cloud.tstarr.us"; name = "Nextcloud"; }
|
||||||
{ "url" = "https://git.tstarr.us"; name = "Gitea"; }
|
{ "url" = "https://git.tstarr.us"; name = "Gitea"; }
|
||||||
|
@ -5,12 +5,14 @@ in {
|
|||||||
options.modules.services.peripherals.enable = lib.mkEnableOption "peripherals";
|
options.modules.services.peripherals.enable = lib.mkEnableOption "peripherals";
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
|
|
||||||
|
services.usbmuxd.enable = true; # for iOS mounting as storage
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
pulseaudio # Sound server for Linux and other Unix-like operating systems.
|
pulseaudio # Sound server for Linux and other Unix-like operating systems.
|
||||||
pavucontrol # Simple GTK based mixer for the PulseAudio sound server
|
pavucontrol # Simple GTK based mixer for the PulseAudio sound server
|
||||||
|
libimobiledevice # Library to support iPhone, iPod Touch and iPad devices on Linux
|
||||||
|
ifuse # fuse filesystem implementation to access the contents of iOS devices
|
||||||
];
|
];
|
||||||
|
|
||||||
# rtkit is optional but recommended
|
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
services.pipewire = {
|
services.pipewire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -15,6 +15,8 @@ in {
|
|||||||
owner = "${user}";
|
owner = "${user}";
|
||||||
group = "users";
|
group = "users";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# ssh secrets
|
||||||
age.secrets."ssh/kestrel/id_ed25519" = {
|
age.secrets."ssh/kestrel/id_ed25519" = {
|
||||||
file = ../../secrets/ssh/kestrel/id_ed25519.age;
|
file = ../../secrets/ssh/kestrel/id_ed25519.age;
|
||||||
owner = "${user}";
|
owner = "${user}";
|
||||||
@ -25,5 +27,17 @@ in {
|
|||||||
owner = "${user}";
|
owner = "${user}";
|
||||||
group = "users";
|
group = "users";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# emu secrets
|
||||||
|
age.secrets."emu/switch/prod.keys" = {
|
||||||
|
file = ../../secrets/emu/switch/prod.keys.age;
|
||||||
|
owner = "${user}";
|
||||||
|
group = "users";
|
||||||
|
};
|
||||||
|
age.secrets."emu/switch/title.keys" = {
|
||||||
|
file = ../../secrets/emu/switch/title.keys.age;
|
||||||
|
owner = "${user}";
|
||||||
|
group = "users";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
BIN
provision/secrets/emu/switch/prod.keys.age
Normal file
BIN
provision/secrets/emu/switch/prod.keys.age
Normal file
Binary file not shown.
BIN
provision/secrets/emu/switch/title.keys.age
Normal file
BIN
provision/secrets/emu/switch/title.keys.age
Normal file
Binary file not shown.
@ -10,6 +10,8 @@ let
|
|||||||
in
|
in
|
||||||
{
|
{
|
||||||
"git/github_personal.age".publicKeys = users ++ systems;
|
"git/github_personal.age".publicKeys = users ++ systems;
|
||||||
|
"emu/switch/prod.keys.age".publicKeys = users ++ systems;
|
||||||
|
"emu/switch/title.keys.age".publicKeys = users ++ systems;
|
||||||
"wireguard/kestrel.age".publicKeys = users ++ systems;
|
"wireguard/kestrel.age".publicKeys = users ++ systems;
|
||||||
"wireguard/torus.age".publicKeys = systems;
|
"wireguard/torus.age".publicKeys = systems;
|
||||||
"wireguard/bulwark.age".publicKeys = systems;
|
"wireguard/bulwark.age".publicKeys = systems;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user