BIG RESTRUCT

This commit is contained in:
cnst
2024-06-24 20:27:04 +02:00
parent 1b75dc88c4
commit c130053edf
323 changed files with 83677 additions and 38 deletions

1
hosts/programs/adb.nix Normal file
View File

@@ -0,0 +1 @@
{ programs.adb.enable = true; }

View File

@@ -0,0 +1,6 @@
{
hyprland = {
enable = true;
xwayland.enable = true;
};
}

View File

@@ -0,0 +1,6 @@
{
neovim = {
enable = true;
defaultEditor = true;
};
}

View File

@@ -0,0 +1 @@
{ programs.nix-ld.enable = true; }

View File

@@ -0,0 +1 @@
{programs.solaar.enable = true;}

23
hosts/programs/steam.nix Normal file
View File

@@ -0,0 +1,23 @@
{ pkgs, ... }:
{
programs.steam = {
enable = true;
package = pkgs.steam.override {
extraPkgs =
pkgs: with pkgs; [
xorg.libXcursor
xorg.libXi
xorg.libXinerama
xorg.libXScrnSaver
libpng
libpulseaudio
libvorbis
stdenv.cc.cc.lib
libkrb5
keyutils
gamescope
mangohud
];
};
};
}

1
hosts/programs/zsh.nix Normal file
View File

@@ -0,0 +1 @@
{ programs.zsh.enable = true; }