17 lines
564 B
Nix
Raw Normal View History

2021-09-15 18:37:57 +03:00
{ modulesPath, lib, inputs, pkgs, ... }: {
2022-12-07 22:05:00 +03:00
imports = with inputs.self; [
"${toString modulesPath}/installer/cd-dvd/installation-cd-graphical-plasma5.nix"
2021-09-15 18:37:57 +03:00
];
2022-12-07 22:05:00 +03:00
environment.systemPackages = [ pkgs.git ];
nix = {
nixPath = lib.mkForce [ "self=/etc/self/compat" "nixpkgs=/etc/nixpkgs" ];
registry.self.flake = inputs.self;
registry.nixpkgs.flake = inputs.nixpkgs;
extraOptions = ''
experimental-features = nix-command flakes
'';
2022-08-24 18:33:53 +03:00
};
2022-12-07 22:05:00 +03:00
environment.etc.nixpkgs.source = inputs.nixpkgs;
environment.etc.self.source = inputs.self;
2021-09-15 18:37:57 +03:00
}