mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 06:44:26 -05:00
Initial commit unclean
This commit is contained in:
33
hosts/nixyos-asus/configuration.nix
Normal file
33
hosts/nixyos-asus/configuration.nix
Normal file
@@ -0,0 +1,33 @@
|
||||
# Edit this configuration file to define what should be installed on
|
||||
# your system.
|
||||
|
||||
{ lib, pkgs, ... }:
|
||||
|
||||
let
|
||||
test_variable = "Hello world";
|
||||
in {
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
|
||||
# Installing the common modules
|
||||
# Still need to modularize this
|
||||
# ../../modules/networking.nix
|
||||
|
||||
# Common modules
|
||||
../../users.nix
|
||||
../../modules/tweaks.nix
|
||||
../../modules/laptop.nix
|
||||
../../common.nix
|
||||
];
|
||||
|
||||
# TEST INSERT
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
|
||||
networking.networkmanager.wifi.powersave = true;
|
||||
|
||||
networking.hostName = "nixyos";
|
||||
system.stateVersion = "24.11"; # Did you read the comment?
|
||||
}
|
||||
|
||||
33
hosts/nixyos-asus/hardware-configuration.nix
Normal file
33
hosts/nixyos-asus/hardware-configuration.nix
Normal file
@@ -0,0 +1,33 @@
|
||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||
# and may be overwritten by future invocations.
|
||||
|
||||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" "rtsx_usb_sdmmc" ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/881615c5-5c12-46c5-8bd2-1959f9347980";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/515E-BF68";
|
||||
fsType = "vfat";
|
||||
options = [ "fmask=0077" "dmask=0077" ];
|
||||
};
|
||||
|
||||
swapDevices =
|
||||
[ { device = "/dev/disk/by-uuid/07f75e57-a125-4619-b65b-c37fb425275f"; }
|
||||
];
|
||||
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
}
|
||||
Reference in New Issue
Block a user