diff --git a/hosts/mac-laptop/configuration.nix b/hosts/mac-laptop/configuration.nix index b0d1807..4f6b9ef 100644 --- a/hosts/mac-laptop/configuration.nix +++ b/hosts/mac-laptop/configuration.nix @@ -27,6 +27,7 @@ trusted-users = [ "root" "joshuaelm" ]; }; + programs.gpu-screen-recorder.enable = true; # Bootloader. boot.loader.systemd-boot.enable = true; @@ -181,6 +182,7 @@ killall hypridle git + gpu-screen-recorder bibata-cursors element-desktop rofi @@ -215,6 +217,8 @@ # Or disable the firewall altogether. networking.firewall.enable = false; + nixpkgs.config.allowUnsupportedSystem = true; + # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It‘s perfectly fine and recommended to leave diff --git a/modules/default.nix b/modules/default.nix index f7d3258..7fbd759 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -1,5 +1,17 @@ { config, pkgs, inputs, ... }: { - imports = [ ./stylix ./cava ./hypr ./kitty ./noctalia ./nushell ./nvim ./starship ./yazi ./zen]; + imports = + [ + ./stylix + ./cava + ./hypr + ./kitty + ./noctalia + ./nushell + ./nvim + ./starship + ./yazi + ./zen + ]; }