odchudzenie systemu

This commit is contained in:
2025-11-19 20:14:19 +01:00
parent c7b625459d
commit 8d06b7b0d0
20 changed files with 95 additions and 224 deletions

View File

@@ -1,4 +1,9 @@
{ pkgs, config, ... }:
{
pkgs,
config,
lib,
...
}:
{
boot = {
@@ -16,7 +21,7 @@
wallpapers = [
./../../wallpapers/attack-on-titan-mikasa-ackerman.jpg
];
wallpaperStyle = "centered";
wallpaperStyle = lib.mkDefault "centered";
backdrop = "${config.stylix.base16Scheme.base00}";
interface = {
branding = "GarandOS Bootloader";

View File

@@ -24,6 +24,7 @@
./thunar.nix
./user.nix
./virtualisation.nix
./xdg.nix
./xserver.nix
inputs.stylix.nixosModules.stylix
];

View File

@@ -1,19 +1,9 @@
{ pkgs, ... }:
{
xdg.portal = {
enable = true;
wlr.enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-hyprland
xdg-desktop-portal-gtk
];
configPackages = [ pkgs.hyprland ];
};
_: {
services = {
flatpak = {
enable = true;
packages = [
"org.vinegarhq.Sober"
# "org.vinegarhq.Sober"
"io.github.flattool.Warehouse"
"com.github.tchx84.Flatseal"
];

View File

@@ -5,10 +5,10 @@
slack
mattermost-desktop
# Productivity & Office
bitwarden-desktop
# bitwarden-desktop
tutanota-desktop
iotas
logseq
# logseq
# Utilities
galculator
gedit

View File

@@ -4,7 +4,7 @@
imports = [
./programs.nix
./clients.nix
./development.nix
# ./development.nix
./gaming.nix
./multimedia.nix
./terminal.nix

View File

@@ -1,10 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Language servers & formatters
nixd
nil
nixfmt-rfc-style
# Learning & practice
exercism
];

View File

@@ -1,12 +1,12 @@
{
pkgs,
inputs,
system,
# inputs,
# system,
...
}:
{
environment.systemPackages = with pkgs; [
inputs.prismlauncher-cracked.packages.${system}.default
# inputs.prismlauncher-cracked.packages.${system}.default
space-cadet-pinball
tty-solitaire
];

View File

@@ -1,7 +1,7 @@
{
pkgs,
inputs,
system,
# inputs,
# system,
...
}:
{
@@ -11,9 +11,9 @@
ffmpegthumbnailer
mpv
# gimp3
inputs.affinity-nix.packages.${system}.v3
# inputs.affinity-nix.packages.${system}.v3
eog
kdePackages.kdenlive
# kdePackages.kdenlive
# Audio
rhythmbox
plexamp
@@ -21,7 +21,7 @@
pavucontrol
playerctl
# Media downloaders & clients
freetube
ytmdl
# freetube
# ytmdl
];
}

View File

@@ -7,6 +7,5 @@
fortune
lolcat
eza
amfora
];
}

View File

@@ -2,11 +2,11 @@
{
environment.systemPackages = with pkgs; [
virt-viewer
lazydocker
# lazydocker
docker-client
distrobox
boxbuddy
freerdp
winboat
# distrobox
# boxbuddy
# freerdp
# winboat
];
}

12
modules/core/xdg.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
xdg.portal = {
enable = true;
wlr.enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-hyprland
xdg-desktop-portal-gtk
];
configPackages = [ pkgs.hyprland ];
};
}