aktualizacja domyślnego hosta
This commit is contained in:
18
hosts/default/config/nixpkgs/clients.nix
Normal file
18
hosts/default/config/nixpkgs/clients.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
# Klienty
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
# rustdesk
|
||||
nextcloud-client
|
||||
plexamp
|
||||
bitwarden-desktop
|
||||
tutanota-desktop
|
||||
discord
|
||||
slack
|
||||
ungoogled-chromium
|
||||
docker-client
|
||||
anki-bin
|
||||
onlyoffice-bin
|
||||
freetube
|
||||
mattermost-desktop
|
||||
];
|
||||
}
|
||||
14
hosts/default/config/nixpkgs/codium.nix
Normal file
14
hosts/default/config/nixpkgs/codium.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{pkgs, ...}: {
|
||||
environment = {
|
||||
systemPackages = with pkgs; [
|
||||
(vscode-with-extensions.override {
|
||||
vscode = vscodium;
|
||||
vscodeExtensions = with vscode-extensions;
|
||||
[
|
||||
]
|
||||
++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
|
||||
];
|
||||
})
|
||||
];
|
||||
};
|
||||
}
|
||||
40
hosts/default/config/nixpkgs/fundamentals.nix
Normal file
40
hosts/default/config/nixpkgs/fundamentals.nix
Normal file
@@ -0,0 +1,40 @@
|
||||
# Fundamentalne programy dla systemu
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
wget
|
||||
killall
|
||||
eza
|
||||
git
|
||||
libnotify
|
||||
v4l-utils
|
||||
ydotool
|
||||
duf
|
||||
ncdu
|
||||
wl-clipboard
|
||||
pciutils
|
||||
ffmpeg
|
||||
socat
|
||||
ripgrep
|
||||
lshw
|
||||
bat
|
||||
pkg-config
|
||||
meson
|
||||
ninja
|
||||
brightnessctl
|
||||
swappy
|
||||
appimage-run
|
||||
networkmanagerapplet
|
||||
yad
|
||||
inxi
|
||||
playerctl
|
||||
nh
|
||||
nixfmt-rfc-style
|
||||
file-roller
|
||||
tree
|
||||
nixd
|
||||
alejandra
|
||||
docker
|
||||
docker-compose
|
||||
cifs-utils
|
||||
];
|
||||
}
|
||||
14
hosts/default/config/nixpkgs/gaming.nix
Normal file
14
hosts/default/config/nixpkgs/gaming.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
# Narzędzia do gier
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
system,
|
||||
...
|
||||
}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
wineWowPackages.waylandFull # wine64
|
||||
lutris
|
||||
space-cadet-pinball
|
||||
inputs.prismlauncher-cracked.packages.${system}.default
|
||||
];
|
||||
}
|
||||
16
hosts/default/config/nixpkgs/multimedia.nix
Normal file
16
hosts/default/config/nixpkgs/multimedia.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
# Programy multimedialne
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
swww
|
||||
grim
|
||||
slurp
|
||||
swaynotificationcenter
|
||||
imv
|
||||
mpv
|
||||
gimp
|
||||
pavucontrol
|
||||
vlc
|
||||
kdePackages.kdenlive
|
||||
obs-studio
|
||||
];
|
||||
}
|
||||
18
hosts/default/config/nixpkgs/tools.nix
Normal file
18
hosts/default/config/nixpkgs/tools.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
# Narzędzia systemowe
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
lm_sensors
|
||||
unzip
|
||||
unrar
|
||||
hyprpicker
|
||||
virt-viewer
|
||||
libvirt
|
||||
greetd.tuigreet
|
||||
galculator
|
||||
lazydocker
|
||||
# lazygit
|
||||
docker-slim
|
||||
dex
|
||||
exercism
|
||||
];
|
||||
}
|
||||
14
hosts/default/config/nixpkgs/tty.nix
Normal file
14
hosts/default/config/nixpkgs/tty.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
# Aplikacje terminalowe
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
gambit-chess
|
||||
tty-solitaire
|
||||
cmatrix
|
||||
cowsay
|
||||
sl
|
||||
fortune
|
||||
ookla-speedtest
|
||||
neohtop
|
||||
toot
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user