nod: More fixes

This commit is contained in:
Geoffrey Frogeye 2025-04-24 20:22:33 +02:00
parent 8142336d1e
commit af122405fb
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
4 changed files with 13 additions and 2 deletions

View file

@ -210,7 +210,9 @@
system = "x86_64-linux";
modules = [ ./cranberry ];
};
nixOnDroidConfigurations.sprinkles = lib.nixOnDroidConfiguration { };
nixOnDroidConfigurations.sprinkles = lib.nixOnDroidConfiguration {
modules = [ ./sprinkles ];
};
# Fake systems
nixosConfigurations.morton = lib.nixosSystem {
system = "x86_64-linux";

View file

@ -178,7 +178,7 @@
stateVersion = "24.11";
packages = with pkgs; [
# Terminal utils
coreutils-full
# coreutils-full # Disabled because conflicts with nix-on-droid
moreutils
rename
which

View file

@ -15,6 +15,7 @@
};
};
};
nix.package = pkgs.lix;
system.stateVersion = "24.05";
terminal.font = "${
pkgs.nerdfonts.override {

8
sprinkles/default.nix Normal file
View file

@ -0,0 +1,8 @@
{
config = {
user = {
uid = 10195;
gid = 10195;
};
};
}