vr
This commit is contained in:
parent
67aa9ec0ea
commit
6a9f4d40c8
10 changed files with 60 additions and 26 deletions
|
|
@ -9,9 +9,9 @@
|
|||
programs.firefox = {
|
||||
enable = true;
|
||||
|
||||
# nativeMessagingHosts = with pkgs; [
|
||||
# tridactyl-native
|
||||
# ];
|
||||
nativeMessagingHosts = with pkgs; [
|
||||
tridactyl-native
|
||||
];
|
||||
|
||||
policies = {
|
||||
Homepage = {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
{...}: {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
lfs.enable = true;
|
||||
userName = "Lilith";
|
||||
userEmail = "ole@benstem.de";
|
||||
difftastic.enable = true;
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@
|
|||
];
|
||||
|
||||
exec-once = [
|
||||
"hyprlock"
|
||||
"ssh-agent"
|
||||
"[workspace special:keepass silent] keepassxc"
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{...}:{
|
||||
{ config, ...}:{
|
||||
programs.hyprlock = {
|
||||
enable = true;
|
||||
|
||||
|
|
@ -11,14 +11,23 @@
|
|||
|
||||
background = [
|
||||
{
|
||||
color = "rgba(25, 20, 20, 1.0)";
|
||||
path = "screenshot";
|
||||
# color = "rgba(25, 20, 20, 1.0)";
|
||||
|
||||
blur_passes = 2;
|
||||
blur_size = 7;
|
||||
noise = 0.0117;
|
||||
contrast = 0.8916;
|
||||
brightness = 0.8172;
|
||||
vibrancy = 0.1696;
|
||||
vibrancy_darkness = 0.0;
|
||||
}
|
||||
];
|
||||
|
||||
input-field = [
|
||||
{
|
||||
size = "200, 50";
|
||||
position = "0, -80";
|
||||
size = "800, 80";
|
||||
position = "0, 0";
|
||||
monitor = "";
|
||||
dots_center = true;
|
||||
fade_on_empty = false;
|
||||
|
|
|
|||
|
|
@ -23,6 +23,8 @@
|
|||
keepassxc
|
||||
ncspot
|
||||
|
||||
vesktop
|
||||
|
||||
btop
|
||||
htop
|
||||
];
|
||||
|
|
|
|||
|
|
@ -5,11 +5,12 @@
|
|||
".config/sops"
|
||||
".config/keepassxc"
|
||||
".config/obsidian"
|
||||
".config/discord"
|
||||
".config/vesktop"
|
||||
".gnupg"
|
||||
".ssh"
|
||||
|
||||
".thunderbird"
|
||||
".mozilla"
|
||||
|
||||
"nixos"
|
||||
"sync"
|
||||
|
|
|
|||
|
|
@ -35,24 +35,7 @@ in {
|
|||
conf.extraConfig
|
||||
conf.hardware-configuration
|
||||
|
||||
./audio.nix
|
||||
./boot.nix
|
||||
./env.nix
|
||||
./networking.nix
|
||||
./persistence.nix
|
||||
./bluetooth.nix
|
||||
./btrfs.nix
|
||||
./fonts.nix
|
||||
./nix.nix
|
||||
./nfs.nix
|
||||
./users.nix
|
||||
./sops.nix
|
||||
./ssh.nix
|
||||
./steam.nix
|
||||
./stylix.nix
|
||||
./syncthing.nix
|
||||
./wayland.nix
|
||||
./zsh.nix
|
||||
./full.nix
|
||||
|
||||
home-manager.nixosModules.home-manager
|
||||
({config, ...}: {
|
||||
|
|
|
|||
|
|
@ -3,5 +3,6 @@
|
|||
EDITOR = "hx";
|
||||
VISUAL = "hx";
|
||||
FLAKE = conf.home + /nixos;
|
||||
ELECTRON_OZONE_PLATFORM_HINT = "auto";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
24
system/full.nix
Normal file
24
system/full.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{lib, config, ...}: {
|
||||
imports = [
|
||||
./audio.nix
|
||||
./boot.nix
|
||||
./env.nix
|
||||
./networking.nix
|
||||
./persistence.nix
|
||||
./bluetooth.nix
|
||||
./btrfs.nix
|
||||
./fonts.nix
|
||||
./nix.nix
|
||||
./nfs.nix
|
||||
./users.nix
|
||||
./sops.nix
|
||||
./ssh.nix
|
||||
./steam.nix
|
||||
./stylix.nix
|
||||
./syncthing.nix
|
||||
./wayland.nix
|
||||
./zsh.nix
|
||||
] ++ lib.optionals conf.gaming.enable [
|
||||
./vr.nix
|
||||
];
|
||||
}
|
||||
12
system/vr.nix
Normal file
12
system/vr.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{...}: {
|
||||
services.monado = {
|
||||
enable = true;
|
||||
defaultRuntime = true;
|
||||
};
|
||||
|
||||
systemd.user.services.monado.environment = {
|
||||
STEAMVR_LH_ENABLE = "1";
|
||||
XRT_COMPOSITOR_COMPUTE = "1";
|
||||
WMR_HANDTRACKING = "0";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue