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
# and in the NixOS manual (accessible by running nixos-help).
{ pkgs, hyprland, ... }: {
{ pkgs, config, ... }: {
imports = [
<home-manager/nixos>
./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;

View File

@ -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; };