This commit is contained in:
alisceon 2025-08-08 14:42:57 +02:00
parent 69715b78b6
commit 2969b161f0
4 changed files with 12 additions and 2 deletions

View file

@ -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

1
home/conf/config.nix Normal file
View file

@ -0,0 +1 @@
{ allowUnfree = true; }

View file

@ -121,6 +121,7 @@
krita
edk2-uefi-shell
obsidian
gparted
]; # end systemPackages
gnome.excludePackages = with pkgs; [
evolution

View file

@ -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;
};
};
}