Compare commits
No commits in common. "a5c6a9a7da4cb3a8c772e727fabc7f9490340d2e" and "99215ba9ca65cab8e3090063bcf94bf1a7a986f8" have entirely different histories.
a5c6a9a7da
...
99215ba9ca
4 changed files with 1 additions and 17 deletions
|
|
@ -3,9 +3,7 @@
|
||||||
./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
|
||||||
|
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
{ 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,7 +14,6 @@ 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) mkIf mkForce;
|
inherit (lib) mkForce;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
|
@ -37,7 +37,6 @@ 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 ];
|
||||||
|
|
@ -65,7 +64,6 @@ 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