From e72007409d2ba79d8dae9e41f97d90308a5c076b Mon Sep 17 00:00:00 2001 From: Tristan Druyen Date: Tue, 12 Sep 2023 23:32:42 +0200 Subject: [PATCH] Various small things Signed-off-by: Tristan Druyen --- configuration.nix | 2 +- doom.d/init.el | 2 +- home.nix | 19 +++++++++++-------- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/configuration.nix b/configuration.nix index 440e36b..1845b4b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -78,7 +78,7 @@ # Enable sound with pipewire. sound.enable = true; - hardware.bluetooth.enable = false; + hardware.bluetooth.enable = true; hardware.pulseaudio.enable = false; security.rtkit.enable = true; services.pipewire = { diff --git a/doom.d/init.el b/doom.d/init.el index efa9e0b..42bf3a1 100644 --- a/doom.d/init.el +++ b/doom.d/init.el @@ -173,7 +173,7 @@ ;;solidity ; do you need a blockchain? No. ;;swift ; who asked for emoji variables? ;;terra ; Earth and Moon in alignment for performance. - ;;web ; the tubes + web ; the tubes yaml ; JSON, but readable ;;zig ; C, but simpler diff --git a/home.nix b/home.nix index 9214b48..19bde92 100644 --- a/home.nix +++ b/home.nix @@ -8,6 +8,13 @@ settings.experimental-features = ["nix-command" "flakes"]; }; + dconf.settings = { + "org/virt-manager/virt-manager/connections" = { + autoconnect = ["qemu:///system"]; + uris = ["qemu:///system"]; + }; + }; + programs.doom-emacs = { enable = true; doomPrivateDir = ./doom.d; @@ -26,12 +33,10 @@ }; }; - dconf.settings = { - "org/virt-manager/virt-manager/connections" = { - autoconnect = ["qemu:///system"]; - uris = ["qemu:///system"]; - }; + services.emacs = { + enable = true; }; + home.packages = with pkgs; [ atool alacritty @@ -47,9 +52,7 @@ tailscale thunderbird ]; + home.stateVersion = "23.05"; - services.emacs = { - enable = true; - }; }; }