Evie Litherland-Smith
9e92c21fbd
Move autoUpgrade, nix registry and stylix settings to their own files, only import autoUpgrade on desktops and server Add laptop system file to control power management Move some bits from flake.nix to default.nix and desktop.nix where appropriate
35 lines
639 B
Nix
35 lines
639 B
Nix
{...}: {
|
|
nix.registry = {
|
|
nixos = {
|
|
from = {
|
|
type = "indirect";
|
|
id = "nixos";
|
|
};
|
|
to = {
|
|
type = "git";
|
|
url = "https://git.xenia.me.uk/xenia/nixos.git?ref=main";
|
|
};
|
|
};
|
|
pyenv = {
|
|
from = {
|
|
type = "indirect";
|
|
id = "pyenv";
|
|
};
|
|
to = {
|
|
type = "git";
|
|
url = "https://git.xenia.me.uk/utils/pyenv.git";
|
|
};
|
|
};
|
|
jupyter = {
|
|
from = {
|
|
type = "indirect";
|
|
id = "jupyter";
|
|
};
|
|
to = {
|
|
type = "git";
|
|
url = "https://git.xenia.me.uk/xenia/nix-jupyter.git";
|
|
};
|
|
};
|
|
};
|
|
}
|