mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 19:46:17 +01:00
d3e46e5413
Signed-off-by: Magic_RB <magic_rb@redalder.org>
30 lines
636 B
Nix
30 lines
636 B
Nix
inputs: {
|
|
system = "x86_64-linux";
|
|
|
|
# hm."main" = import ../home-manager/profiles/mark.nix;
|
|
|
|
modules = [
|
|
(_: {
|
|
supportedFilesystems = [ "zfs" ];
|
|
magic_rb = {
|
|
pins = {
|
|
"nixpkgs" = inputs.nixpkgs;
|
|
"nixpkgs-unstable" = inputs.nixpkgs-unstable;
|
|
"nixpkgs-master" = inputs.nixpkgs-master;
|
|
|
|
"nixng" = inputs.nixng;
|
|
};
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
overlays = inputs.self.overlays;
|
|
};
|
|
})
|
|
(import "${inputs.nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix")
|
|
];
|
|
|
|
compatModules = [
|
|
|
|
];
|
|
}
|