Compare commits

..

2 commits

Author SHA1 Message Date
Harald Hoyer adb0d8bdde chore: nix fmt
Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
2025-01-16 16:25:12 +01:00
Harald Hoyer 904b1e8cfe feat(m4nix): enable spice
Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
2025-01-16 16:24:57 +01:00
4 changed files with 14 additions and 10 deletions

View file

@ -1,6 +1,7 @@
{
...
}: {
}:
{
defaultSSHKeys = [
"sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIDsb/Tr69YN5MQLweWPuJaRGm+h2kOyxfD6sqKEDTIwoAAAABHNzaDo= harald@fedora.fritz.box"
"sk-ecdsa-sha2-nistp256@openssh.com AAAAInNrLWVjZHNhLXNoYTItbmlzdHAyNTZAb3BlbnNzaC5jb20AAAAIbmlzdHAyNTYAAABBBACLgT81iB1iWWVuXq6PdQ5GAAGhaZhSKnveQCvcNnAOZ5WKH80bZShKHyAYzrzbp8IGwLWJcZQ7TqRK+qZdfagAAAAEc3NoOg== harald@hoyer.xyz"

View file

@ -7,7 +7,7 @@
with lib;
with lib.metacfg;
let
common = import ../../common.nix {};
common = import ../../common.nix { };
cfg = config.metacfg.user;
is-linux = pkgs.stdenv.isLinux;

View file

@ -8,7 +8,7 @@
with lib;
with lib.metacfg;
let
common = import ../../common.nix {};
common = import ../../common.nix { };
cfg = config.metacfg.user;
defaultIconFileName = "profile.jpg";
defaultIcon = pkgs.stdenvNoCC.mkDerivation {

View file

@ -6,6 +6,9 @@ with lib.metacfg;
./hardware-configuration.nix
];
services.spice-autorandr.enable = true;
services.spice-vdagentd.enable = true;
metacfg = {
base.enable = true;
gui.enable = true;