Initial commit

This commit is contained in:
2024-06-10 00:51:58 -07:00
commit de67011773
2 changed files with 116 additions and 0 deletions

77
configuration.nix Normal file
View File

@@ -0,0 +1,77 @@
{ config, lib, pkgs, ... }:
{
imports = [
<nixos-hardware/asus/rog-strix/g513im>
./hardware-configuration.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking = {
hostName = "marauder";
networkmanager.enable = true;
};
time.timeZone = "America/Los_Angeles";
i18n.defaultLocale = "en_US.UTF-8";
users.users = {
nettika = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
};
};
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
nano
git
lshw
firefox
vscode
];
hardware.opengl = {
enable = true;
driSupport32Bit = true;
};
#hardware.nvidia = {
# modesetting.enable = true;
# prime = {
# sync.enable = true;
# nvidiaBusId = "PCI:01:00:0";
# amdgpuBusId = "PCI:05:00:0";
# };
#};
services.xserver = {
enable = true;
#videoDrivers = ["nvidia" "amdgpu"];
desktopManager = {
cinnamon.enable = true;
xterm.enable = false;
};
};
services.displayManager.defaultSession = "cinnamon";
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
programs.nano = {
nanorc = ''
set autoindent
set linenumbers
'';
};
system.stateVersion = "24.05";
}

View File

@@ -0,0 +1,39 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/648c6539-892c-40d7-8b07-23fe760df02a";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/1D62-C30E";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp2s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}