use unstable helix

This commit is contained in:
zoe 2023-03-23 19:19:57 +01:00
parent 4293ee539d
commit 980a665359
2 changed files with 8 additions and 3 deletions

View File

@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page # your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help). # and in the NixOS manual (accessible by running nixos-help).
{ pkgs, hyprland, ... }: { { pkgs, config, ... }: {
imports = [ imports = [
<home-manager/nixos> <home-manager/nixos>
./hardware-configuration.nix ./hardware-configuration.nix
@ -120,7 +120,11 @@
}; };
# Configure console keymap # Configure console keymap
console.keyMap = "us"; console = {
# earlySetup = true;
keyMap = "us";
# font = config.font.mono;
};
# Enable CUPS to print documents. # Enable CUPS to print documents.
# services.printing.enable = true; # services.printing.enable = true;
@ -136,7 +140,7 @@
security.rtkit.enable = true; security.rtkit.enable = true;
security.please.enable = true; security.please.enable = true;
services.pipewire = { services.pipewire = {
enable = true; enable = true;
alsa.enable = true; alsa.enable = true;

View File

@ -4,6 +4,7 @@ in
{ {
package = pkgs.helix; package = pkgs.helix;
enable = true; enable = true;
package = pkgs.unstable.helix;
settings = { settings = {
theme = "catppuccin_frappe"; theme = "catppuccin_frappe";
editor = { auto-completion = true; auto-format = true; }; editor = { auto-completion = true; auto-format = true; };