mirror of
https://github.com/JaxTheWolf/nixos.git
synced 2026-04-01 10:10:22 +02:00
156 lines
3.7 KiB
Nix
156 lines
3.7 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
zram-generator
|
|
];
|
|
|
|
services = {
|
|
lact.enable = true;
|
|
printing.enable = true;
|
|
flatpak = {
|
|
enable = true;
|
|
remotes = [
|
|
{
|
|
name = "flathub";
|
|
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
|
|
}
|
|
];
|
|
packages = [
|
|
{
|
|
appId = "com.mattjakeman.ExtensionManager";
|
|
origin = "flathub";
|
|
}
|
|
{
|
|
appId = "com.prusa3d.PrusaSlicer";
|
|
origin = "flathub";
|
|
}
|
|
{
|
|
appId = "com.github.tchx84.Flatseal";
|
|
origin = "flathub";
|
|
}
|
|
{
|
|
appId = "org.gtk.Gtk3theme.Adwaita-dark";
|
|
origin = "flathub";
|
|
}
|
|
# {
|
|
# appId = "org.freedesktop.Platform.ffmpeg-full";
|
|
# origin = "flathub";
|
|
# }
|
|
{
|
|
appId = "org.gtk.Gtk3theme.Flat-Remix-GTK-Red-Darkest";
|
|
origin = "flathub";
|
|
}
|
|
{
|
|
appId = "com.github.iwalton3.jellyfin-media-player";
|
|
origin = "flathub";
|
|
}
|
|
# {
|
|
# appId = "com.github.tchx84.Flatseal";
|
|
# origin = "flathub";
|
|
# }
|
|
# {
|
|
# appId = "com.github.tchx84.Flatseal";
|
|
# origin = "flathub";
|
|
# }
|
|
# {
|
|
# appId = "com.github.tchx84.Flatseal";
|
|
# origin = "flathub";
|
|
# }
|
|
];
|
|
};
|
|
sshd.enable = true;
|
|
displayManager.gdm.enable = true;
|
|
desktopManager.gnome.enable = true;
|
|
xserver = {
|
|
enable = true;
|
|
excludePackages = with pkgs; [
|
|
xterm
|
|
];
|
|
xkb = {
|
|
layout = "cz";
|
|
variant = "";
|
|
};
|
|
};
|
|
pulseaudio.enable = false;
|
|
pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
# If you want to use JACK applications, uncomment this
|
|
#jack.enable = true;
|
|
|
|
# use the example session manager (no others are packaged yet so this is enabled by default,
|
|
# no need to redefine it in your config for now)
|
|
#media-session.enable = true;
|
|
};
|
|
hardware.openrgb.motherboard = "amd";
|
|
hardware.openrgb.enable = true;
|
|
journald.extraConfig = ''
|
|
SystemMaxUse=2G
|
|
RuntimeMaxUse=1G
|
|
SystemMaxFiles=100
|
|
'';
|
|
zram-generator = {
|
|
enable = true;
|
|
settings = {
|
|
"zram0" = {
|
|
"zram-size" = "ram*1.5";
|
|
"compression-algorithm" = "zstd";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
systemd = {
|
|
services."fstrim-all" = {
|
|
description = "Run fstrim on all mounted filesystems";
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
ExecStart = "${pkgs.util-linux}/bin/fstrim -av";
|
|
};
|
|
};
|
|
timers."fstrim-all" = {
|
|
wantedBy = [ "timers.target" ];
|
|
timerConfig = {
|
|
OnCalendar = "weekly";
|
|
Persistent = true;
|
|
};
|
|
};
|
|
services."btrfs-scrub-root" = {
|
|
description = "Run btrfs scrub on / (monthly)";
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
ExecStart = "${pkgs.btrfs-progs}/bin/btrfs scrub start -B -R /";
|
|
};
|
|
};
|
|
timers."btrfs-scrub-root" = {
|
|
wantedBy = [ "timers.target" ];
|
|
timerConfig = {
|
|
OnCalendar = "monthly";
|
|
Persistent = true;
|
|
};
|
|
};
|
|
services."btrfs-scrub-home" = {
|
|
description = "Run btrfs scrub on /home (monthly)";
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
ExecStart = "${pkgs.btrfs-progs}/bin/btrfs scrub start -B -R /home";
|
|
};
|
|
};
|
|
timers."btrfs-scrub-home" = {
|
|
wantedBy = [ "timers.target" ];
|
|
timerConfig = {
|
|
OnCalendar = "monthly";
|
|
Persistent = true;
|
|
};
|
|
};
|
|
};
|
|
}
|