fixed all the random shit errors
This commit is contained in:
@@ -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;
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -55,7 +55,7 @@
|
|||||||
delfin
|
delfin
|
||||||
docker
|
docker
|
||||||
jellyfin-tui
|
jellyfin-tui
|
||||||
unstable.bambu-studio
|
orca-slicer
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -6,6 +6,8 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
services.libinput.enable = true;
|
||||||
|
|
||||||
services.displayManager.defaultSession = "hyprland";
|
services.displayManager.defaultSession = "hyprland";
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user