make galvatron and default configuration.nix more similar
This commit is contained in:
parent
95f5dd2c8b
commit
579dd400d7
@ -5,26 +5,15 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
# imports =
|
||||
# [ # Include the results of the hardware scan.
|
||||
# # ./hardware-configuration.nix
|
||||
# # (import "${home-manager}/nixos")
|
||||
# # <home-manager>/nixos
|
||||
# ];
|
||||
|
||||
# Bootloader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
# networking.hostName = "starscream"; # Define your hostname.
|
||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||
|
||||
# Configure network proxy if necessary
|
||||
# networking.proxy.default = "http://user:password@proxy:port/";
|
||||
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
||||
|
||||
# Enable networking
|
||||
networking.networkmanager.enable = true;
|
||||
networking.wireless.iwd = {
|
||||
enable = true;
|
||||
settings.General.EnableNetworkConfiguration = true;
|
||||
};
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "America/Anchorage";
|
||||
@ -135,6 +124,7 @@
|
||||
environment.systemPackages = with pkgs; [
|
||||
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||
# wget
|
||||
vim
|
||||
emacs29-pgtk
|
||||
];
|
||||
|
||||
|
@ -32,6 +32,7 @@
|
||||
modules = [
|
||||
./configuration.nix {
|
||||
networking.hostName = "starscream";
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
}
|
||||
./hardware/starscream-hw.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
@ -48,6 +49,7 @@
|
||||
modules = [
|
||||
./configuration.nix {
|
||||
networking.hostName = "knockout";
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
}
|
||||
./hardware/knockout-hw.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
|
@ -5,23 +5,11 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
# imports =
|
||||
# [ # Include the results of the hardware scan.
|
||||
# # ./hardware-configuration.nix
|
||||
# # ./apple-silicon-support
|
||||
# ];
|
||||
|
||||
# asahi shit
|
||||
# hardware.asahi.peripheralFirmwareDirectory = ./firmware;
|
||||
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
# boot.loader.efi.canTouchEfiVariables = false;
|
||||
|
||||
# networking.hostName = "galvatron"; # Define your hostname.
|
||||
# Pick only one of the below networking options.
|
||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
||||
# Enable networking
|
||||
networking.networkmanager.enable = true;
|
||||
networking.wireless.iwd = {
|
||||
enable = true;
|
||||
settings.General.EnableNetworkConfiguration = true;
|
||||
@ -30,10 +18,6 @@
|
||||
# Set your time zone.
|
||||
time.timeZone = "America/Anchorage";
|
||||
|
||||
# Configure network proxy if necessary
|
||||
# networking.proxy.default = "http://user:password@proxy:port/";
|
||||
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
||||
|
||||
# Select internationalisation properties.
|
||||
# i18n.defaultLocale = "en_US.UTF-8";
|
||||
# console = {
|
||||
|
Loading…
Reference in New Issue
Block a user