update nix-on-droid

This commit is contained in:
2025-01-16 21:54:18 -06:00
parent aa5075d03a
commit dd0a388939
3 changed files with 11 additions and 10 deletions

View File

@@ -143,6 +143,7 @@
config.homeconfig = {
wal.enable = true;
calcurse.enable = true;
home-manager.enable = true;
};
}
];

View File

@@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: {
{ config, lib, pkgs, inputs, ... }: {
imports = [
./programs
@@ -27,12 +27,14 @@
home.homeDirectory = "/data/data/com.termux.nix/files/home";
gtk = {
enable = true;
theme.name = "Tokyonight-Dark";
theme.package = pkgs.tokyonight-gtk-theme;
iconTheme.package = pkgs.rose-pine-icon-theme;
iconTheme.name = "rose-pine-moon";
nix = {
nixPath = [
"nixpkgs=${inputs.nixpkgs}"
];
settings = {
experimental-features = [ "nix-command" "flakes" ];
};
};
programs.ssh.enable = true;

View File

@@ -159,9 +159,7 @@
"wheel"
"podman"
]; # Enable sudo for the user.
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAsU69CxfQk58CvItPN426h5Alnpb60SH37wet97Vb57 nathan@laptop"
];
openssh.authorizedKeys.keys = [];
};
nix = {