diff --git a/home/arrakis/monitors.nix b/home/arrakis/monitors.nix index 1355591..2488121 100644 --- a/home/arrakis/monitors.nix +++ b/home/arrakis/monitors.nix @@ -1,4 +1,4 @@ -{ ... }: +_: { wayland.windowManager.hyprland.settings = { monitor = [ diff --git a/home/common/features/mutable-file.nix b/home/common/features/mutable-file.nix index 71e4992..aa8e2be 100644 --- a/home/common/features/mutable-file.nix +++ b/home/common/features/mutable-file.nix @@ -38,7 +38,7 @@ let { name, value }: let target = "${config.home.homeDirectory}/${name}"; - source = value.source; + inherit (value) source; dirName = builtins.dirOf target; in '' diff --git a/home/common/features/xdg.nix b/home/common/features/xdg.nix index 6cffca8..ad6a61d 100644 --- a/home/common/features/xdg.nix +++ b/home/common/features/xdg.nix @@ -1,4 +1,4 @@ -{ ... }: +_: { xdg = { userDirs = { diff --git a/home/common/programs/opencode/default.nix b/home/common/programs/opencode/default.nix index 34ab553..2223e33 100644 --- a/home/common/programs/opencode/default.nix +++ b/home/common/programs/opencode/default.nix @@ -1,6 +1,4 @@ -{ - ... -}: +_: { # Global config file xdg.configFile."opencode/opencode.json".source = ./opencode.json; diff --git a/home/common/programs/ssh.nix b/home/common/programs/ssh.nix index fe63549..1c9ec11 100644 --- a/home/common/programs/ssh.nix +++ b/home/common/programs/ssh.nix @@ -1,4 +1,4 @@ -{ ... }: +_: { programs.ssh = { enable = true; diff --git a/home/konishi/monitors.nix b/home/konishi/monitors.nix index c61f854..04af1ed 100644 --- a/home/konishi/monitors.nix +++ b/home/konishi/monitors.nix @@ -1,6 +1,4 @@ -{ - ... -}: +_: { wayland.windowManager.hyprland.settings = { monitor = [ diff --git a/hosts/common/features/appimage.nix b/hosts/common/features/appimage.nix index a890a25..0994127 100644 --- a/hosts/common/features/appimage.nix +++ b/hosts/common/features/appimage.nix @@ -1,4 +1,4 @@ -{ ... }: +_: { programs.appimage = { enable = true; diff --git a/hosts/common/features/docker.nix b/hosts/common/features/docker.nix index fa0b80f..6321786 100644 --- a/hosts/common/features/docker.nix +++ b/hosts/common/features/docker.nix @@ -1,4 +1,4 @@ -{ ... }: +_: { virtualisation.docker = { enable = true; diff --git a/hosts/common/features/home/default.nix b/hosts/common/features/home/default.nix index 025183e..c11b470 100644 --- a/hosts/common/features/home/default.nix +++ b/hosts/common/features/home/default.nix @@ -1,6 +1,4 @@ -{ - ... -}: +_: { security.pki.certificateFiles = [ ./n62.casa.pem ]; diff --git a/hosts/common/features/networking.nix b/hosts/common/features/networking.nix index d3678e4..1e99f60 100644 --- a/hosts/common/features/networking.nix +++ b/hosts/common/features/networking.nix @@ -1,4 +1,4 @@ -{ ... }: +_: { networking = { networkmanager.enable = true; diff --git a/hosts/common/features/steam.nix b/hosts/common/features/steam.nix index 2b92e68..df37a33 100644 --- a/hosts/common/features/steam.nix +++ b/hosts/common/features/steam.nix @@ -1,6 +1,4 @@ -{ - ... -}: +_: { programs.steam = { diff --git a/hosts/common/global/ssh.nix b/hosts/common/global/ssh.nix index 7d87d50..be5f8be 100644 --- a/hosts/common/global/ssh.nix +++ b/hosts/common/global/ssh.nix @@ -1,4 +1,4 @@ -{ ... }: +_: { services.openssh = { enable = true;