-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'channels/nixos-unstable'
- Loading branch information
Showing
177 changed files
with
3,095 additions
and
1,951 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# This module contains the basic configuration for building a graphical NixOS | ||
# installation CD. | ||
|
||
{ config, lib, pkgs, ... }: | ||
|
||
with lib; | ||
|
||
{ | ||
imports = [ ./installation-cd-base.nix ]; | ||
|
||
services.xserver = { | ||
enable = true; | ||
|
||
# Don't start the X server by default. | ||
autorun = mkForce false; | ||
|
||
# Automatically login as root. | ||
displayManager.slim = { | ||
enable = true; | ||
defaultUser = "root"; | ||
autoLogin = true; | ||
}; | ||
|
||
}; | ||
|
||
# Provide networkmanager for easy wireless configuration. | ||
networking.networkmanager.enable = true; | ||
networking.wireless.enable = mkForce false; | ||
|
||
# KDE complains if power management is disabled (to be precise, if | ||
# there is no power management backend such as upower). | ||
powerManagement.enable = true; | ||
|
||
environment.systemPackages = [ | ||
# Include gparted for partitioning disks. | ||
pkgs.gparted | ||
|
||
# Include some editors. | ||
pkgs.vim | ||
pkgs.bvi # binary editor | ||
pkgs.joe | ||
|
||
# Firefox for reading the manual. | ||
pkgs.firefox | ||
|
||
pkgs.glxinfo | ||
]; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.