From 49dd37c04ddcf6814cd1a7cb1ae09ec56c0a18fc Mon Sep 17 00:00:00 2001 From: Ranomier <> Date: Tue, 24 Dec 2024 12:11:01 +0100 Subject: [PATCH] 304 current 2024-12-24 12:09:06 24.11.20241222.1807c2b 6.12.2-zen1 * --- flake.lock | 24 ++++++++++++------------ modules/accessibility.nix | 2 +- modules/wm_and_de/components/dbus.nix | 6 ++++++ modules/wm_and_de/default.nix | 1 + 4 files changed, 20 insertions(+), 13 deletions(-) create mode 100644 modules/wm_and_de/components/dbus.nix diff --git a/flake.lock b/flake.lock index 9973db2..c3adb17 100644 --- a/flake.lock +++ b/flake.lock @@ -23,11 +23,11 @@ }, "nix-flatpak": { "locked": { - "lastModified": 1734128415, - "narHash": "sha256-HLwdVNxpuTsLlM3tCkpbQU6yCehdgf3kOS1G2SDlkzY=", + "lastModified": 1734864618, + "narHash": "sha256-8SCTJhDH1fdNGGFhuGStIqbO7vwUKQokgQu6nQlQagY=", "owner": "gmodena", "repo": "nix-flatpak", - "rev": "8bdc2540da516006d07b04019eb57ae0781a04b3", + "rev": "13be795cac27df7044a425c0b2de3a42b10ddb18", "type": "github" }, "original": { @@ -38,11 +38,11 @@ }, "nixos-hardware": { "locked": { - "lastModified": 1734352517, - "narHash": "sha256-mfv+J/vO4nqmIOlq8Y1rRW8hVsGH3M+I2ESMjhuebDs=", + "lastModified": 1734954597, + "narHash": "sha256-QIhd8/0x30gEv8XEE1iAnrdMlKuQ0EzthfDR7Hwl+fk=", "owner": "NixOS", "repo": "nixos-hardware", - "rev": "b12e314726a4226298fe82776b4baeaa7bcf3dcd", + "rev": "def1d472c832d77885f174089b0d34854b007198", "type": "github" }, "original": { @@ -54,11 +54,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1734323986, - "narHash": "sha256-m/lh6hYMIWDYHCAsn81CDAiXoT3gmxXI9J987W5tZrE=", + "lastModified": 1734875076, + "narHash": "sha256-Pzyb+YNG5u3zP79zoi8HXYMs15Q5dfjDgwCdUI5B0nY=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "394571358ce82dff7411395829aa6a3aad45b907", + "rev": "1807c2b91223227ad5599d7067a61665c52d1295", "type": "github" }, "original": { @@ -70,11 +70,11 @@ }, "nixpkgs-unstable": { "locked": { - "lastModified": 1734424634, - "narHash": "sha256-cHar1vqHOOyC7f1+tVycPoWTfKIaqkoe1Q6TnKzuti4=", + "lastModified": 1734649271, + "narHash": "sha256-4EVBRhOjMDuGtMaofAIqzJbg4Ql7Ai0PSeuVZTHjyKQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "d3c42f187194c26d9f0309a8ecc469d6c878ce33", + "rev": "d70bd19e0a38ad4790d3913bf08fcbfc9eeca507", "type": "github" }, "original": { diff --git a/modules/accessibility.nix b/modules/accessibility.nix index b80a9a8..3347018 100644 --- a/modules/accessibility.nix +++ b/modules/accessibility.nix @@ -1,3 +1,3 @@ -{ ... }: { +{...}: { services.speechd.enable = true; } diff --git a/modules/wm_and_de/components/dbus.nix b/modules/wm_and_de/components/dbus.nix new file mode 100644 index 0000000..f8aa5f1 --- /dev/null +++ b/modules/wm_and_de/components/dbus.nix @@ -0,0 +1,6 @@ +{...}: { + services.dbus = { + implementation = "broker"; + apparmor = "enabled"; + }; +} diff --git a/modules/wm_and_de/default.nix b/modules/wm_and_de/default.nix index b02afc2..226c715 100644 --- a/modules/wm_and_de/default.nix +++ b/modules/wm_and_de/default.nix @@ -1,5 +1,6 @@ {...}: { imports = [ ./hyprland.nix + ./components/dbus.nix ]; }