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"; ls = "exa";
ll = "exa -lah"; ll = "exa -lah";
grep = "rg"; 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"; tsla-fan = "ipmitool -H 10.30.0.3 -U ADMIN -P ADMIN raw 0x30 0x70 0x66 0x01 0x0";
# NixOS commands # NixOS commands
@ -103,6 +103,9 @@
# overide broken config # overide broken config
xdg.configFile."obsidian/obsidian.json".source = lib.mkForce ./conf/obsidian.json; 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; [ home.packages = with pkgs; [
signal-desktop signal-desktop
discord discord

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

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

View file

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

View file

@ -18,7 +18,6 @@
enable = true; enable = true;
theme = "rings"; theme = "rings";
themePackages = with pkgs; [ themePackages = with pkgs; [
# By default we would install all themes
(adi1090x-plymouth-themes.override { (adi1090x-plymouth-themes.override {
selected_themes = [ "rings" ]; selected_themes = [ "rings" ];
}) })
@ -49,4 +48,10 @@
tod.driver = pkgs.libfprint-2-tod1-goodix; tod.driver = pkgs.libfprint-2-tod1-goodix;
}; };
}; };
hardware = {
bluetooth = {
enable = true;
powerOnBoot = true;
};
};
} }