From 2969b161f02e710b25fc54404889aee1d09a5b72 Mon Sep 17 00:00:00 2001 From: alisceon Date: Fri, 8 Aug 2025 14:42:57 +0200 Subject: [PATCH] devvian --- home/alisceon.nix | 5 ++++- home/conf/config.nix | 1 + hosts/common.nix | 1 + hosts/electra/configuration.nix | 7 ++++++- 4 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 home/conf/config.nix diff --git a/home/alisceon.nix b/home/alisceon.nix index de08a09..506702a 100644 --- a/home/alisceon.nix +++ b/home/alisceon.nix @@ -16,7 +16,7 @@ ls = "exa"; ll = "exa -lah"; grep = "rg"; - cat = "bat"; + cat = "bat -p"; tsla-fan = "ipmitool -H 10.30.0.3 -U ADMIN -P ADMIN raw 0x30 0x70 0x66 0x01 0x0"; # NixOS commands @@ -103,6 +103,9 @@ # overide broken config xdg.configFile."obsidian/obsidian.json".source = lib.mkForce ./conf/obsidian.json; + # nixpkgs config + xdg.configFile."nixpkgs/config.nix".source = ./conf/config.nix; + home.packages = with pkgs; [ signal-desktop discord diff --git a/home/conf/config.nix b/home/conf/config.nix new file mode 100644 index 0000000..d84a323 --- /dev/null +++ b/home/conf/config.nix @@ -0,0 +1 @@ +{ allowUnfree = true; } \ No newline at end of file diff --git a/hosts/common.nix b/hosts/common.nix index 0fb51c4..f37ea05 100644 --- a/hosts/common.nix +++ b/hosts/common.nix @@ -121,6 +121,7 @@ krita edk2-uefi-shell obsidian + gparted ]; # end systemPackages gnome.excludePackages = with pkgs; [ evolution diff --git a/hosts/electra/configuration.nix b/hosts/electra/configuration.nix index d18d5e3..4a05eb3 100644 --- a/hosts/electra/configuration.nix +++ b/hosts/electra/configuration.nix @@ -18,7 +18,6 @@ enable = true; theme = "rings"; themePackages = with pkgs; [ - # By default we would install all themes (adi1090x-plymouth-themes.override { selected_themes = [ "rings" ]; }) @@ -49,4 +48,10 @@ tod.driver = pkgs.libfprint-2-tod1-goodix; }; }; + hardware = { + bluetooth = { + enable = true; + powerOnBoot = true; + }; + }; }