continue nix on droid stuff
This commit is contained in:
@@ -158,7 +158,6 @@
|
|||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
./system-config/configuration/android
|
./system-config/configuration/android
|
||||||
./system-config
|
|
||||||
];
|
];
|
||||||
|
|
||||||
extraSpecialArgs = {
|
extraSpecialArgs = {
|
||||||
|
|||||||
@@ -1,24 +1,32 @@
|
|||||||
{ config, lib, pkgs, ... }: {
|
{ config, lib, pkgs, inputs, ... }: {
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
home-manager = {
|
home-manager = {
|
||||||
backupFileExtension = ".backup";
|
backupFileExtension = ".backup";
|
||||||
config = { config, lib, pkgs, inputs }: {
|
config = {
|
||||||
imports = [
|
imports = [
|
||||||
inputs.nathan
|
inputs.nathan
|
||||||
];
|
];
|
||||||
config.homeconfig = {
|
config = {
|
||||||
wal.enable = true;
|
homeconfig = {
|
||||||
calcurse.enable = true;
|
wal.enable = true;
|
||||||
|
calcurse.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
home.homeDirectory = "/data/data/com.termux.nix/files/home";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
terminal.font = "${pkgs.fira-code}/share/fonts/truetype/FiraCode-VF.ttf";
|
terminal.font = "${pkgs.fira-code}/share/fonts/truetype/FiraCode-VF.ttf";
|
||||||
|
|
||||||
user.shell = "${pkgs.zsh}/bin/zsh";
|
user = {
|
||||||
|
shell = "${pkgs.zsh}/bin/zsh";
|
||||||
|
};
|
||||||
|
|
||||||
system.stateVersion = "24.05";
|
android-integration = {};
|
||||||
|
|
||||||
|
system.stateVersion = "24.11";
|
||||||
|
|
||||||
environment = {
|
environment = {
|
||||||
etcBackupExtension = ".backup";
|
etcBackupExtension = ".backup";
|
||||||
|
|||||||
@@ -62,7 +62,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
config = {
|
config = lib.mkIf (config.sysconfig.host != "android") {
|
||||||
users.users = builtins.mapAttrs (x: y: let
|
users.users = builtins.mapAttrs (x: y: let
|
||||||
cfg = config.sysconfig.users.${x};
|
cfg = config.sysconfig.users.${x};
|
||||||
in {
|
in {
|
||||||
|
|||||||
Reference in New Issue
Block a user