feat: moved TODO to issues

This commit is contained in:
Patrick 2023-09-23 01:49:29 +02:00
parent a05748ee28
commit 9570cea5dc
Signed by: patrick
GPG key ID: 451F95EFB8BECD0F
7 changed files with 5 additions and 14 deletions

View file

@ -131,7 +131,6 @@
inputs.nixpkgs-wayland.overlay inputs.nixpkgs-wayland.overlay
]; ];
inherit system; inherit system;
# TODO fix this to only allow specific unfree packages
config.allowUnfree = true; config.allowUnfree = true;
}; };

View file

@ -29,7 +29,6 @@
IPv6PrivacyExtensions = "yes"; IPv6PrivacyExtensions = "yes";
MulticastDNS = true; MulticastDNS = true;
}; };
# TODO: change dns to own when at home
dns = ["9.9.9.9"]; dns = ["9.9.9.9"];
dhcpV4Config.RouteMetric = 40; dhcpV4Config.RouteMetric = 40;
dhcpV6Config.RouteMetric = 40; dhcpV6Config.RouteMetric = 40;

View file

@ -3,7 +3,6 @@
inputs.nixos-hardware.nixosModules.common-pc inputs.nixos-hardware.nixosModules.common-pc
inputs.nixos-hardware.nixosModules.common-pc-ssd inputs.nixos-hardware.nixosModules.common-pc-ssd
# TODO: sollte entfernt werden für server
../../modules/config ../../modules/config
../../modules/optional/initrd-ssh.nix ../../modules/optional/initrd-ssh.nix
../../modules/optional/secureboot.nix ../../modules/optional/secureboot.nix

View file

@ -47,10 +47,5 @@
templates.flake = inputs.templates; templates.flake = inputs.templates;
}; };
}; };
# TODO!!!!!!!
# Bad nodejs
nixpkgs.config.permittedInsecurePackages = [
"nodejs-16.20.0"
];
system.stateVersion = stateVersion; system.stateVersion = stateVersion;
} }

View file

@ -13,6 +13,9 @@
autoEnable = false; autoEnable = false;
polarity = "dark"; polarity = "dark";
image = config.lib.stylix.pixel "base00"; image = config.lib.stylix.pixel "base00";
base16Scheme = "${pkgs.base16-schemes}/share/themes/da-one-black.yaml"; base16Scheme = "${pkgs.base16-schemes}/share/themes/helios.yaml";
override = {
base00 = "#000000";
};
}; };
} }

View file

@ -14,6 +14,7 @@ in {
}; };
#bindkeysToCode = true; #bindkeysToCode = true;
window.titlebar = false; window.titlebar = false;
floating.titlebar = false;
workspaceOutputAssign = [ workspaceOutputAssign = [
{ {
workspace = "1"; workspace = "1";

View file

@ -7,10 +7,6 @@
../starfish.nix ../starfish.nix
]; ];
# for zsh-histdb
# TODO replace sqlite inplace with nix path
home.packages = [pkgs.sqlite];
# save history in xdg data home # save history in xdg data home
home.sessionVariables.HISTDB_FILE = "${config.xdg.dataHome}/zsh/history.db"; home.sessionVariables.HISTDB_FILE = "${config.xdg.dataHome}/zsh/history.db";
@ -55,7 +51,6 @@
src = "${pkgs.zsh-fast-syntax-highlighting}/share/zsh/site-functions"; src = "${pkgs.zsh-fast-syntax-highlighting}/share/zsh/site-functions";
} }
{ {
# TODO change to separate packages
name = "zsh-histdb"; name = "zsh-histdb";
src = pkgs.zsh-histdb; src = pkgs.zsh-histdb;
} }