initial commit x2

This commit is contained in:
sophron
2025-06-23 00:47:36 +05:00
commit f2f225110a
193 changed files with 4737 additions and 0 deletions

47
system/apps.nix Normal file
View File

@@ -0,0 +1,47 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
#Безделушки
fastfetch
btop
#Для никсы
nix-prefetch-git
home-manager
nh
#Сис утилиты
pciutils
glxinfo
killall
inxi
tree
#Основ пакеты
micro
wget
git
bash
];
fonts = {
packages = with pkgs; [
cantarell-fonts
noto-fonts
noto-fonts-cjk-sans
noto-fonts-emoji
fira-code-symbols
fira-code
dejavu_fonts
jetbrains-mono
nerd-fonts.symbols-only
nerd-fonts.jetbrains-mono
];
fontconfig.defaultFonts.emoji = [ "Noto Color Emoji" ];
};
programs = {
adb.enable = true;
gamemode.enable = true;
zsh.enable = true;
};
steam.enable = true;
};
}