Compare commits
No commits in common. "ecd325b8305be26cdc23d57910f048fc5bbc74a5" and "4f5a315521ddd0523dd5f4244b1ab1b89790c346" have entirely different histories.
ecd325b830
...
4f5a315521
@ -18,9 +18,6 @@
|
|||||||
boot.kernelParams = [ "amdgpu.ppfeaturemask=0xfff7ffff" "amdgpu.gpu_recovery=1" ];
|
boot.kernelParams = [ "amdgpu.ppfeaturemask=0xfff7ffff" "amdgpu.gpu_recovery=1" ];
|
||||||
services.openssh = {enable = true;};
|
services.openssh = {enable = true;};
|
||||||
|
|
||||||
virtualisation.docker.enable = true;
|
|
||||||
virtualisation.docker.storageDriver = "btrfs";
|
|
||||||
|
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
hostName = "desktop";
|
hostName = "desktop";
|
||||||
@ -37,14 +34,14 @@
|
|||||||
|
|
||||||
services = {
|
services = {
|
||||||
pipewire = {
|
pipewire = {
|
||||||
enable = false;
|
enable = true;
|
||||||
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 = false;
|
enable = true;
|
||||||
defaultRuntime = true;
|
defaultRuntime = true;
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
};
|
};
|
||||||
@ -56,7 +53,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
stylix = {
|
stylix = {
|
||||||
enable = false;
|
enable = true;
|
||||||
autoEnable = true;
|
autoEnable = true;
|
||||||
polarity = "light";
|
polarity = "light";
|
||||||
image = ../laptop/wallpaper.png;
|
image = ../laptop/wallpaper.png;
|
||||||
@ -110,16 +107,16 @@
|
|||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
zsh.enable = true;
|
zsh.enable = true;
|
||||||
steam.enable = false;
|
steam.enable = true;
|
||||||
gamescope.enable = false;
|
gamescope.enable = true;
|
||||||
envision.enable = false;
|
envision.enable = true;
|
||||||
corectrl.enable = false;
|
corectrl.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
users.users.k = {
|
users.users.k = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "k";
|
description = "k";
|
||||||
extraGroups = ["networkmanager" "wheel" "docker"];
|
extraGroups = ["networkmanager" "wheel"];
|
||||||
packages = with pkgs; [zsh];
|
packages = with pkgs; [zsh];
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
|
|||||||
@ -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
|
||||||
# }
|
}
|
||||||
#'';
|
'';
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user