diff --git a/hosts/common/system/configs/bluetooth/default.nix b/hosts/common/system/configs/bluetooth/default.nix index 14dcff1..c79bf2a 100644 --- a/hosts/common/system/configs/bluetooth/default.nix +++ b/hosts/common/system/configs/bluetooth/default.nix @@ -1,3 +1,4 @@ +{ ... }: { hardware.bluetooth = { enable = true; diff --git a/hosts/common/system/configs/git/default.nix b/hosts/common/system/configs/git/default.nix index d8ac829..a887b85 100644 --- a/hosts/common/system/configs/git/default.nix +++ b/hosts/common/system/configs/git/default.nix @@ -1,3 +1,4 @@ +{ ... }: { programs.git = { enable = true; diff --git a/hosts/common/system/configs/gpg-agent/default.nix b/hosts/common/system/configs/gpg-agent/default.nix index 3ac32ea..19f9336 100644 --- a/hosts/common/system/configs/gpg-agent/default.nix +++ b/hosts/common/system/configs/gpg-agent/default.nix @@ -1 +1,4 @@ -{ programs.gnupg.agent.enable = true; } +{ ... }: +{ + programs.gnupg.agent.enable = true; +} diff --git a/hosts/common/system/configs/neovim/default.nix b/hosts/common/system/configs/neovim/default.nix index d4abca3..91d5ded 100644 --- a/hosts/common/system/configs/neovim/default.nix +++ b/hosts/common/system/configs/neovim/default.nix @@ -1,3 +1,4 @@ +{ ... }: { programs.neovim = { enable = true; diff --git a/hosts/common/system/configs/networking/default.nix b/hosts/common/system/configs/networking/default.nix index 4ed1869..99bc006 100644 --- a/hosts/common/system/configs/networking/default.nix +++ b/hosts/common/system/configs/networking/default.nix @@ -1,3 +1,4 @@ +{ ... }: { networking.networkmanager.enable = true; diff --git a/hosts/common/system/configs/nix-ld/default.nix b/hosts/common/system/configs/nix-ld/default.nix index c502844..eae44ea 100644 --- a/hosts/common/system/configs/nix-ld/default.nix +++ b/hosts/common/system/configs/nix-ld/default.nix @@ -1,3 +1,4 @@ +{ ... }: { programs.nix-ld = { enable = true; diff --git a/hosts/common/system/configs/pipewire/default.nix b/hosts/common/system/configs/pipewire/default.nix index 394c7c0..25536ff 100644 --- a/hosts/common/system/configs/pipewire/default.nix +++ b/hosts/common/system/configs/pipewire/default.nix @@ -1,3 +1,4 @@ +{ ... }: { services.pipewire = { enable = true; diff --git a/hosts/common/system/configs/ssh/default.nix b/hosts/common/system/configs/ssh/default.nix index 7647213..0a66fe1 100644 --- a/hosts/common/system/configs/ssh/default.nix +++ b/hosts/common/system/configs/ssh/default.nix @@ -1,3 +1,4 @@ +{ ... }: { programs.ssh = { knownHosts = { diff --git a/hosts/common/system/configs/tmux/default.nix b/hosts/common/system/configs/tmux/default.nix index b017dcd..52befb7 100644 --- a/hosts/common/system/configs/tmux/default.nix +++ b/hosts/common/system/configs/tmux/default.nix @@ -1,3 +1,4 @@ +{ ... }: { programs.tmux = { enable = true; diff --git a/hosts/common/system/configs/zsh/default.nix b/hosts/common/system/configs/zsh/default.nix index 81d894c..e207951 100644 --- a/hosts/common/system/configs/zsh/default.nix +++ b/hosts/common/system/configs/zsh/default.nix @@ -1,3 +1,4 @@ +{ ... }: { programs.zsh = { enable = true;