39 lines
745 B
Nix
39 lines
745 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
"${inputs.nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares-plasma6.nix"
|
|
|
|
];
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
nix.settings.experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
# Set environment variable for allowing non-free packages
|
|
environment.sessionVariables = {
|
|
NIXPKGS_ALLOW_UNFREE = "1";
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
|
git
|
|
curl
|
|
parted
|
|
nano
|
|
comma
|
|
just
|
|
age
|
|
neovim
|
|
wget
|
|
];
|
|
|
|
services.openssh.enable = true;
|
|
}
|