Merge branch 'dev'

This commit is contained in:
alsaiduq-lab 2025-04-05 08:50:28 -06:00
commit db56f0323c
3 changed files with 6 additions and 4 deletions

View file

@ -1,3 +1,4 @@
# TODO: remodulate the rpcs3 stuff somewhere else, clunky here
{ {
description = "NixOS configuration for Cobray"; description = "NixOS configuration for Cobray";

View file

@ -1,7 +1,4 @@
{ {pkgs, ...}: {
pkgs,
...
}: {
imports = [ imports = [
./audio.nix ./audio.nix
./bluetooth.nix ./bluetooth.nix
@ -19,6 +16,7 @@
./user.nix ./user.nix
./python.nix ./python.nix
./tailscale.nix ./tailscale.nix
./udiskie.nix
]; ];
# Enable CUPS to print documents. # Enable CUPS to print documents.

3
modules/udiskie.nix Normal file
View file

@ -0,0 +1,3 @@
{...}: {
services.udisks2.enable = true;
}