treewide: remove no-ops (#8061)

This commit is contained in:
Benedikt M. Rips 2025-10-26 21:43:53 +01:00 committed by GitHub
parent 879e4d9060
commit f2f1076c1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
37 changed files with 302 additions and 414 deletions

View file

@ -1,5 +1,3 @@
{ ... }:
{
programs.ashell = {
enable = true;

View file

@ -1,5 +1,3 @@
{ ... }:
{
programs = {
bash.enable = true;

View file

@ -1,5 +1,3 @@
{ ... }:
{
programs.keepassxc = {
enable = true;

View file

@ -1,5 +1,3 @@
{ ... }:
{
programs.keepassxc = {
enable = true;

View file

@ -1,5 +1,3 @@
{ ... }:
{
programs = {
kubeswitch.enable = true;

View file

@ -1,4 +1,3 @@
{ ... }:
{
programs.lazydocker = {
enable = true;

View file

@ -1,4 +1,3 @@
{ ... }:
{
programs.lazydocker.enable = true;
test.stubs.lazydocker = { };

View file

@ -1,4 +1,3 @@
{ ... }:
{
programs.swaylock.settings = { };

View file

@ -1,4 +1,3 @@
{ ... }:
{
programs.uv = {
enable = true;

View file

@ -1,20 +1,11 @@
{
imports = [
(
{ ... }:
{
config.programs.zsh.history.ignorePatterns = [ "echo *" ];
}
)
(
{ ... }:
{
config.programs.zsh.history.ignorePatterns = [ "rm *" ];
}
)
];
programs.zsh.enable = true;
programs.zsh = {
enable = true;
history.ignorePatterns = [
"echo *"
"rm *"
];
};
nmt.script = ''
assertFileContains home-files/.zshrc "HISTORY_IGNORE='(echo *|rm *)'"