Compare commits
3 commits
99215ba9ca
...
a5c6a9a7da
| Author | SHA1 | Date | |
|---|---|---|---|
| a5c6a9a7da | |||
| 6a76a54503 | |||
| 57b9557b02 |
4 changed files with 17 additions and 1 deletions
|
|
@ -3,7 +3,9 @@
|
||||||
./base-graphical
|
./base-graphical
|
||||||
./base-server
|
./base-server
|
||||||
./users
|
./users
|
||||||
|
|
||||||
./boot.nix
|
./boot.nix
|
||||||
|
./docker.nix
|
||||||
./gpg.nix
|
./gpg.nix
|
||||||
./home-manager.nix
|
./home-manager.nix
|
||||||
./misc.nix
|
./misc.nix
|
||||||
|
|
|
||||||
11
common/docker.nix
Normal file
11
common/docker.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
virtualisation.docker.daemon.settings = {
|
||||||
|
userland-proxy = false;
|
||||||
|
experimental = true;
|
||||||
|
metrics-addr = "0.0.0.0:9323";
|
||||||
|
ipv6 = true;
|
||||||
|
fixed-cidr-v6 = "fd00::/80";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -14,6 +14,7 @@ in
|
||||||
enableUpdateCheck = false;
|
enableUpdateCheck = false;
|
||||||
extensions = with pkgs.vscode-extensions; [
|
extensions = with pkgs.vscode-extensions; [
|
||||||
ms-python.black-formatter
|
ms-python.black-formatter
|
||||||
|
ms-azuretools.vscode-docker
|
||||||
mkhl.direnv
|
mkhl.direnv
|
||||||
dbaeumer.vscode-eslint
|
dbaeumer.vscode-eslint
|
||||||
golang.go
|
golang.go
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{ config, lib, pkgs, inputs, ... }:
|
{ config, lib, pkgs, inputs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (lib) mkForce;
|
inherit (lib) mkIf mkForce;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
|
@ -37,6 +37,7 @@ in
|
||||||
users.users.qenya.extraGroups = [
|
users.users.qenya.extraGroups = [
|
||||||
"networkmanager" # UI wifi configuration
|
"networkmanager" # UI wifi configuration
|
||||||
"dialout" # access to serial ports
|
"dialout" # access to serial ports
|
||||||
|
"docker"
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.overlays = [ inputs.scoutshonour.overlays.default ];
|
nixpkgs.overlays = [ inputs.scoutshonour.overlays.default ];
|
||||||
|
|
@ -64,6 +65,7 @@ in
|
||||||
|
|
||||||
programs.evolution.enable = true; # not in home-manager yet; not declaratively configurable yet
|
programs.evolution.enable = true; # not in home-manager yet; not declaratively configurable yet
|
||||||
programs.steam.enable = true;
|
programs.steam.enable = true;
|
||||||
|
virtualisation.docker.enable = true;
|
||||||
|
|
||||||
system.stateVersion = "23.11";
|
system.stateVersion = "23.11";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue