chore fixes and gaming
This commit is contained in:
parent
91c08fcab7
commit
7ac1e734e7
7 changed files with 36 additions and 62 deletions
|
|
@ -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" ];
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue