nod: More fixes
This commit is contained in:
parent
8142336d1e
commit
af122405fb
4 changed files with 13 additions and 2 deletions
|
@ -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";
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
8
sprinkles/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
config = {
|
||||||
|
user = {
|
||||||
|
uid = 10195;
|
||||||
|
gid = 10195;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue