some plays, some updates

This commit is contained in:
2026-01-11 06:05:48 +03:00
parent b7f0075276
commit 2eb01e9603
19 changed files with 262 additions and 622 deletions
+37
View File
@@ -0,0 +1,37 @@
{ config, pkgs, lib, ... }:
# KROSH mention
{
system.stateVersion = "25.11";
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 14d";
};
services.printing.enable = true;
environment.sessionVariables.NIXOS_OZONE_WL = "1";
users.users.krosh = {
isNormalUser = true;
description = "krosh";
extraGroups =
[ "fprint" "networkmanager" "wheel" "libvirtd" "plugdev" "lp" ];
shell = pkgs.zsh;
};
services.upower.enable = true;
hardware.bluetooth.enable = true;
environment.systemPackages = with pkgs; [
(writeShellScriptBin "power_max" (builtins.readFile ../scripts/max.sh))
(writeShellScriptBin "power_min" (builtins.readFile ../scripts/min.sh))
(writeShellScriptBin "reload" (builtins.readFile ../scripts/reload.sh))
# papirus-icon-theme
nordzy-icon-theme
adwaita-icon-theme
# hicolor-icon-theme
];
}