cleaned up excluded packages
This commit is contained in:
parent
669132d67f
commit
eb738c1477
|
@ -127,11 +127,11 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
"15-p2p" = {
|
"15-p2p0" = {
|
||||||
netdevConfig = {
|
netdevConfig = {
|
||||||
Kind = "wireguard";
|
Kind = "wireguard";
|
||||||
Name = "p2p0";
|
Name = "p2p0";
|
||||||
MTUBytes = "1300";
|
MTUBytes = "1280";
|
||||||
};
|
};
|
||||||
wireguardConfig = {
|
wireguardConfig = {
|
||||||
PrivateKeyFile = config.sops.secrets."vpn-keys/proton-wireguard/defiant-p2p".path;
|
PrivateKeyFile = config.sops.secrets."vpn-keys/proton-wireguard/defiant-p2p".path;
|
||||||
|
@ -165,21 +165,16 @@
|
||||||
dns = ["192.168.1.1"];
|
dns = ["192.168.1.1"];
|
||||||
};
|
};
|
||||||
|
|
||||||
"45-p2p" = {
|
"45-p2p0" = {
|
||||||
matchConfig.Name = "p2p0";
|
matchConfig.Name = "p2p0";
|
||||||
address = [
|
address = [
|
||||||
"10.2.0.2/32"
|
"10.2.0.2/32"
|
||||||
];
|
];
|
||||||
# routingPolicyRules = [
|
routes = [
|
||||||
# {
|
{
|
||||||
# From = "10.2.0.2/32";
|
Destination = "0.0.0.0/0";
|
||||||
# Table = "p2p";
|
}
|
||||||
# }
|
];
|
||||||
# {
|
|
||||||
# To = "10.2.0.2/32";
|
|
||||||
# Table = "p2p";
|
|
||||||
# }
|
|
||||||
# ];
|
|
||||||
linkConfig.RequiredForOnline = false;
|
linkConfig.RequiredForOnline = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -203,11 +198,7 @@
|
||||||
};
|
};
|
||||||
desktopManager = {
|
desktopManager = {
|
||||||
gnome.enable = true;
|
gnome.enable = true;
|
||||||
xterm.enable = false;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# Get rid of xTerm
|
|
||||||
excludePackages = [pkgs.xterm];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
ollama = {
|
ollama = {
|
||||||
|
|
|
@ -27,7 +27,25 @@
|
||||||
|
|
||||||
# Get rid of xTerm
|
# Get rid of xTerm
|
||||||
desktopManager.xterm.enable = false;
|
desktopManager.xterm.enable = false;
|
||||||
excludePackages = [pkgs.xterm];
|
excludePackages = with pkgs; [
|
||||||
|
xterm
|
||||||
|
transmission_4-qt
|
||||||
|
atomix # puzzle game
|
||||||
|
cheese # webcam tool
|
||||||
|
epiphany # web browser
|
||||||
|
geary # email reader
|
||||||
|
gedit # text editor
|
||||||
|
gnome-characters
|
||||||
|
gnome-music
|
||||||
|
gnome-photos
|
||||||
|
gnome-tour
|
||||||
|
gnome-logs
|
||||||
|
gnome-maps
|
||||||
|
hitori # sudoku game
|
||||||
|
iagno # go game
|
||||||
|
tali # poker game
|
||||||
|
yelp # help viewer
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
pipewire = {
|
pipewire = {
|
||||||
|
|
Loading…
Reference in a new issue