This commit is contained in:
winter
2026-05-27 18:04:34 -07:00
parent fbefeba6a2
commit c67e7d779c
6 changed files with 95 additions and 8 deletions

View File

@@ -62,6 +62,10 @@
# FIXME: Add the rest of your current configuration
networking.extraHosts = "
10.0.0.194 thearcticcircle.ddns.net
";
# build home-manager with nixos-rebuild and not home-manager command
home-manager = {
extraSpecialArgs = { inherit inputs; };
@@ -86,12 +90,32 @@
services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true;
programs.niri.enable = true;
programs.gamescope.enable = true;
environment.systemPackages = with pkgs; [
# Steam proton extras
protonplus
# Niri extras
xwayland-satellite
fuzzel
swaylock
waybar
brightnessctl
playerctl
mako
swaylock
];
#general utils
programs.neovim = {
enable = true;
defaultEditor = true; # Sets $EDITOR to nvim system-wide
vimAlias = true;
configure = {
customRC = ''
set number
'';
};
};
programs.git.enable = true;
@@ -101,7 +125,7 @@
"com.vivaldi.Vivaldi"
"dev.vencord.Vesktop"
#"com.github.tchx84.Flatseal"
#"com.heroicgameslauncher.hgl"
"com.heroicgameslauncher.hgl"
#"org.blender.Blender"
#"org.kde.krita"
#"com.mojang.Minecraft"

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 = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/05ca00ef-287b-46a6-87a3-242c26d4f6dc";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/74E9-DC7F";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
#Steam parition to fstab
fileSystems."/mnt/steamstorage" = {
device = "/dev/disk/by-uuid/4d405cb8-1082-46ef-9248-f10709b85ba9";
fsType = "ext4";
options = [ "nofail" "rw" "user" "exec" ];
};
swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}