fixed all the random shit errors

This commit is contained in:
voidarclabs
2026-01-19 16:43:52 +00:00
parent a707f97bc3
commit 2387d4e04f
5 changed files with 14 additions and 8 deletions

View File

@@ -132,7 +132,7 @@
cava cava
cmatrix cmatrix
swaynotificationcenter swaynotificationcenter
inputs.chataigne.packages.${pkgs.system}.chataigne inputs.chataigne.packages.${stdenv.hostPlatform.system}.chataigne
wlogout wlogout
wpaperd wpaperd
kando kando
@@ -151,7 +151,7 @@
git git
fastfetch fastfetch
lsd lsd
inputs.doot.packages.${pkgs.system}.default inputs.doot.packages.${stdenv.hostPlatform.system}.default
stow stow
fzf fzf
ripgrep ripgrep
@@ -276,4 +276,9 @@
# The comment # The comment
system.stateVersion = "25.05"; # Did you read the comment? system.stateVersion = "25.05"; # Did you read the comment?
system.autoUpgrade = {
enable = true;
allowReboot = false;
};
} }

View File

@@ -39,8 +39,8 @@
extraGroups = [ ]; extraGroups = [ ];
packages = with pkgs; [ packages = with pkgs; [
# Ricing # Ricing
inputs.way-edges.packages.${pkgs.system}.way-edges inputs.way-edges.packages.${stdenv.hostPlatform.system}.way-edges
inputs.chataigne.packages.${pkgs.system}.chataigne inputs.chataigne.packages.${stdenv.hostPlatform.system}.chataigne
# Terminal # Terminal
light light

View File

@@ -55,7 +55,7 @@
delfin delfin
docker docker
jellyfin-tui jellyfin-tui
unstable.bambu-studio orca-slicer
]; ];
}; };

View File

@@ -1,5 +1,5 @@
{ {
description = "Impure NixOS flake"; description = "Master flake for Voidarc nix config";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
@@ -25,8 +25,7 @@
... ...
}@inputs: }@inputs:
let let
stdenv.hostPlatform.system = "x86_64-linux"; system = "x86_64-linux";
system = stdenv.hostPlatform.system;
hardwareConfig = import /etc/nixos/hardware-configuration.nix; hardwareConfig = import /etc/nixos/hardware-configuration.nix;
in in
{ {

View File

@@ -6,6 +6,8 @@
... ...
}: }:
{ {
services.libinput.enable = true;
services.displayManager.defaultSession = "hyprland"; services.displayManager.defaultSession = "hyprland";
services.xserver = { services.xserver = {
enable = true; enable = true;