mirror of
https://github.com/kmein/niveum
synced 2026-03-19 19:41:08 +01:00
feat(moto): set nix path
This commit is contained in:
@@ -107,8 +107,8 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
nixOnDroidConfigurations = {
|
nixOnDroidConfigurations = {
|
||||||
moto-g5 = nix-on-droid.lib.nixOnDroidConfiguration {
|
moto = nix-on-droid.lib.nixOnDroidConfiguration {
|
||||||
modules = [systems/moto-g5/configuration.nix];
|
modules = [systems/moto/configuration.nix];
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
system = "aarch64-linux";
|
system = "aarch64-linux";
|
||||||
overlays = [nix-on-droid.overlays.default];
|
overlays = [nix-on-droid.overlays.default];
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
inputs,
|
||||||
}: let
|
}: let
|
||||||
sshPort = 8022;
|
sshPort = 8022;
|
||||||
in {
|
in {
|
||||||
@@ -28,17 +28,13 @@ in {
|
|||||||
'')
|
'')
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nixPath = ["nixpkgs=${inputs.nixpkgs}"];
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
backupFileExtension = "hm-bak";
|
backupFileExtension = "hm-bak";
|
||||||
config = {pkgs, ...}: {
|
config = {pkgs, ...}: {
|
||||||
home.stateVersion = "23.05";
|
home.stateVersion = "23.05";
|
||||||
programs.bash = {
|
|
||||||
enable = true;
|
|
||||||
profileExtra = ''
|
|
||||||
${(import ../../configs/bash.nix {inherit pkgs;}).programs.bash.promptInit}
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
Reference in New Issue
Block a user