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"; system = "x86_64-linux";
modules = [ ./cranberry ]; modules = [ ./cranberry ];
}; };
nixOnDroidConfigurations.sprinkles = lib.nixOnDroidConfiguration { }; nixOnDroidConfigurations.sprinkles = lib.nixOnDroidConfiguration {
modules = [ ./sprinkles ];
};
# Fake systems # Fake systems
nixosConfigurations.morton = lib.nixosSystem { nixosConfigurations.morton = lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";

View file

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

View file

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

8
sprinkles/default.nix Normal file
View file

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