Compare commits
No commits in common. "52f0bd6bf5e0ee901dfa31b951e77f011539e3ab" and "501d09c746c3f34fad154f3a0785423d3c336461" have entirely different histories.
52f0bd6bf5
...
501d09c746
2
Makefile
2
Makefile
|
@ -7,6 +7,8 @@ help:
|
||||||
|
|
||||||
android:
|
android:
|
||||||
nix-on-droid switch --flake $(flake)
|
nix-on-droid switch --flake $(flake)
|
||||||
|
cp ~/.termux/_font.ttf ~/.termux/font.ttf
|
||||||
|
cp ~/.termux/_colors.properties ~/.termux/colors.properties
|
||||||
cp ~/.Wallpaper /sdcard/Download/Wallpaper.jpg
|
cp ~/.Wallpaper /sdcard/Download/Wallpaper.jpg
|
||||||
cp ~/.Wallpaper /sdcard/Download/Wallpaper.png
|
cp ~/.Wallpaper /sdcard/Download/Wallpaper.png
|
||||||
|
|
||||||
|
|
|
@ -27,19 +27,17 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
environment.packages = package.core;
|
|
||||||
time.timeZone = const.timeZone;
|
time.timeZone = const.timeZone;
|
||||||
|
environment.packages = package.core;
|
||||||
terminal = {
|
|
||||||
inherit (android) font colors;
|
|
||||||
};
|
|
||||||
|
|
||||||
home-manager.config = stylix // {
|
home-manager.config = stylix // {
|
||||||
imports = [ inputs.stylix.homeManagerModules.stylix ];
|
imports = [ inputs.stylix.homeManagerModules.stylix ];
|
||||||
home = {
|
home = {
|
||||||
file = import ./config args;
|
|
||||||
sessionVariables = import ./variable args;
|
|
||||||
stateVersion = const.droidStateVersion;
|
stateVersion = const.droidStateVersion;
|
||||||
|
sessionVariables = import ./variable args;
|
||||||
|
file = (import ./config args) // {
|
||||||
|
".termux/_font.ttf".source = android.font;
|
||||||
|
".termux/_colors.properties".text = android.colors;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
programs = import ./program args;
|
programs = import ./program args;
|
||||||
};
|
};
|
||||||
|
|
|
@ -6,9 +6,8 @@
|
||||||
}/share/fonts/truetype/NerdFonts/TerminessNerdFontMono-Regular.ttf $out
|
}/share/fonts/truetype/NerdFonts/TerminessNerdFontMono-Regular.ttf $out
|
||||||
'';
|
'';
|
||||||
|
|
||||||
colors = with config.style.color; {
|
colors = ''
|
||||||
background = "#${bg.dark}";
|
background=#${config.style.color.bg.dark}
|
||||||
cursor = "#${fg.light}";
|
foreground=#${config.style.color.fg.light}
|
||||||
foreground = "#${fg.light}";
|
'';
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,11 +45,5 @@
|
||||||
move scratchpad
|
move scratchpad
|
||||||
scratchpad show
|
scratchpad show
|
||||||
}
|
}
|
||||||
|
|
||||||
# JamesDsp.
|
|
||||||
for_window [title="JamesDSP for Linux"] {
|
|
||||||
move scratchpad
|
|
||||||
scratchpad show
|
|
||||||
}
|
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue