chore fixes and gaming

This commit is contained in:
Zoty 2026-06-27 07:44:09 -03:00
parent 91c08fcab7
commit 7ac1e734e7
Signed by: Zoty
SSH key fingerprint: SHA256:WsGEGivgl37t3Mth6uugXMOgMCTR7QolIepNbC+j/tA
7 changed files with 36 additions and 62 deletions

View file

@ -1,14 +1,8 @@
{ den, inputs, config, ... }:
{ den, pkgs-unstable, config, ... }:
let
username = config.local.identity.username;
in {
den.aspects.dev.nixos = { pkgs, ... }:
let
pkgs-unstable = import inputs.nixpkgs-unstable {
system = pkgs.stdenv.hostPlatform.system;
config.allowUnfree = true;
};
in {
den.aspects.dev.nixos = { pkgs, ... }: {
environment.systemPackages = with pkgs-unstable; [
# CLI utilities
gcc
@ -71,8 +65,9 @@ in {
};
virtualisation.docker = {
enable = true;
package = pkgs-unstable.docker_29;
enable = true;
enableOnBoot = false;
package = pkgs-unstable.docker_29;
};
users.users.${username}.extraGroups = [ "docker" ];
};