diff --git a/configuration.nix b/configuration.nix index d8e1799..70a21c4 100644 --- a/configuration.nix +++ b/configuration.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). -{ pkgs, hyprland, ... }: { +{ pkgs, config, ... }: { imports = [ ./hardware-configuration.nix @@ -120,7 +120,11 @@ }; # Configure console keymap - console.keyMap = "us"; + console = { + # earlySetup = true; + keyMap = "us"; + # font = config.font.mono; + }; # Enable CUPS to print documents. # services.printing.enable = true; @@ -136,7 +140,7 @@ security.rtkit.enable = true; security.please.enable = true; - + services.pipewire = { enable = true; alsa.enable = true; diff --git a/helix/settings.nix b/helix/settings.nix index d9585d9..0d43276 100644 --- a/helix/settings.nix +++ b/helix/settings.nix @@ -4,6 +4,7 @@ in { package = pkgs.helix; enable = true; + package = pkgs.unstable.helix; settings = { theme = "catppuccin_frappe"; editor = { auto-completion = true; auto-format = true; };