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 = { config.homeconfig = {
wal.enable = true; wal.enable = true;
calcurse.enable = true; calcurse.enable = true;
home-manager.enable = true;
}; };
} }
]; ];

View File

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

View File

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