Nettoyage et mise à jour

This commit is contained in:
2026-07-11 22:46:51 +02:00
parent bbbf69e9e9
commit 8f0df0f827
12 changed files with 337 additions and 145 deletions
@@ -0,0 +1,15 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.bluetooth;
in
{
options.os.bluetooth = {
enable = mkEnableOption "System networks manager service";
};
config = mkIf cfg.enable {
hardware.bluetooth.enable = true;
};
}
@@ -17,7 +17,5 @@ in
openFirewall = true;
};
networking.networkmanager.enable = true;
};
}
+4 -3
View File
@@ -32,12 +32,13 @@ in
systemPackages =
with pkgs;
[ nautilus ]
++ [
[
nautilus
loupe
papers
simple-scan
];
]
++ (lib.optional config.os.flatpak.enable gnome-software);
};
};