removed unimportant packages
Some checks failed
Verify Nix Flake / verify_build (push) Failing after 1m1s

This commit is contained in:
k 2025-12-15 21:05:54 +00:00
parent 52e7d921d6
commit ecd325b830
2 changed files with 43 additions and 43 deletions

View File

@ -37,14 +37,14 @@
services = { services = {
pipewire = { pipewire = {
enable = true; enable = false;
alsa.enable = true; alsa.enable = true;
alsa.support32Bit = true; alsa.support32Bit = true;
pulse.enable = true; pulse.enable = true;
jack.enable = true; jack.enable = true;
}; };
wivrn = { wivrn = {
enable = true; enable = false;
defaultRuntime = true; defaultRuntime = true;
autoStart = true; autoStart = true;
}; };
@ -56,7 +56,7 @@
}; };
stylix = { stylix = {
enable = true; enable = false;
autoEnable = true; autoEnable = true;
polarity = "light"; polarity = "light";
image = ../laptop/wallpaper.png; image = ../laptop/wallpaper.png;
@ -110,16 +110,16 @@
programs = { programs = {
zsh.enable = true; zsh.enable = true;
steam.enable = true; steam.enable = false;
gamescope.enable = true; gamescope.enable = false;
envision.enable = true; envision.enable = false;
corectrl.enable = true; corectrl.enable = false;
}; };
users.users.k = { users.users.k = {
isNormalUser = true; isNormalUser = true;
description = "k"; description = "k";
extraGroups = ["networkmanager" "wheel"]; extraGroups = ["networkmanager" "wheel" "docker"];
packages = with pkgs; [zsh]; packages = with pkgs; [zsh];
shell = pkgs.zsh; shell = pkgs.zsh;
}; };

View File

@ -6,42 +6,42 @@
}: { }: {
imports = [../home/home_common.nix]; imports = [../home/home_common.nix];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
home = { #home = {
packages = with pkgs; [ # packages = with pkgs; [
steam # steam
neovim # neovim
firefox # firefox
wivrn # wivrn
opencomposite # opencomposite
wlx-overlay-s # wlx-overlay-s
glslang # glslang
gst_all_1.gstreamer # gst_all_1.gstreamer
libdrm # libdrm
openxr-loader # openxr-loader
khronos-ocl-icd-loader # khronos-ocl-icd-loader
]; # ];
}; #};
# For WiVRn: # For WiVRn:
xdg.configFile."openxr/1/active_runtime.json".source = "${pkgs.wivrn}/share/openxr/1/openxr_wivrn.json"; #xdg.configFile."openxr/1/active_runtime.json".source = "${pkgs.wivrn}/share/openxr/1/openxr_wivrn.json";
xdg.configFile."openvr/openvrpaths.vrpath".text = '' #xdg.configFile."openvr/openvrpaths.vrpath".text = ''
{ # {
"config" : # "config" :
[ # [
"${config.xdg.dataHome}/Steam/config" # "${config.xdg.dataHome}/Steam/config"
], # ],
"external_drivers" : null, # "external_drivers" : null,
"jsonid" : "vrpathreg", # "jsonid" : "vrpathreg",
"log" : # "log" :
[ # [
"${config.xdg.dataHome}/Steam/logs" # "${config.xdg.dataHome}/Steam/logs"
], # ],
"runtime" : # "runtime" :
[ # [
"${pkgs.opencomposite}/lib/opencomposite" # "${pkgs.opencomposite}/lib/opencomposite"
], # ],
"version" : 1 # "version" : 1
} # }
''; #'';
} }