Switch to helix nightly
This commit is contained in:
parent
bbb3f94de6
commit
0fcb819528
3 changed files with 48 additions and 35 deletions
|
@ -4,12 +4,19 @@
|
|||
|
||||
{ inputs, withSystem, ... }:
|
||||
{
|
||||
flake.homeConfigurations = {
|
||||
asahi = withSystem "aarch64-linux" (
|
||||
flake.homeConfigurations =
|
||||
let
|
||||
system = "aarch64-linux";
|
||||
in
|
||||
{
|
||||
asahi = withSystem system (
|
||||
{ pkgs, ... }:
|
||||
inputs.home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
extraSpecialArgs = { inherit inputs pkgs; };
|
||||
extraSpecialArgs = {
|
||||
inherit inputs pkgs;
|
||||
system = system;
|
||||
};
|
||||
modules = [
|
||||
{ nixpkgs.overlays = [ inputs.nur.overlays.default ]; }
|
||||
inputs.lix-module.nixosModules.default
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
inputs,
|
||||
lib,
|
||||
pkgs,
|
||||
system,
|
||||
...
|
||||
}:
|
||||
|
||||
|
@ -128,6 +129,7 @@ in
|
|||
};
|
||||
helix = {
|
||||
enable = true;
|
||||
package = inputs.helix.packages.${system}.helix;
|
||||
defaultEditor = true;
|
||||
settings = {
|
||||
editor.soft-wrap = {
|
||||
|
|
|
@ -4,12 +4,16 @@
|
|||
|
||||
{ inputs, withSystem, ... }:
|
||||
{
|
||||
flake.homeConfigurations = {
|
||||
raspi = withSystem "aarch64-linux" (
|
||||
flake.homeConfigurations =
|
||||
let
|
||||
system = "aarch64-linux";
|
||||
in
|
||||
{
|
||||
raspi = withSystem system (
|
||||
{ pkgs, ... }:
|
||||
inputs.home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
extraSpecialArgs = { inherit inputs pkgs; };
|
||||
extraSpecialArgs = { inherit inputs pkgs system; };
|
||||
modules = [
|
||||
inputs.lix-module.nixosModules.default
|
||||
inputs.sops-nix.homeManagerModules.sops
|
||||
|
|
Loading…
Add table
Reference in a new issue