added Jovian-NixOS

This commit is contained in:
willifan 2024-11-02 15:48:48 +01:00
parent a7bfc8c394
commit 0b1331c6d4
9 changed files with 89 additions and 2 deletions

View file

@ -1,4 +1,7 @@
{ ... }:
{
imports = [
./jovian.nix
];
}

View file

@ -0,0 +1,17 @@
{ ... }:
{
jovian = {
decky-loader.enable = true;
devices.steamdeck = {
enable = true;
enableGyroDsuService = true;
};
hardware.has.amd = true;
steam = {
enable = true;
autoStart = true;
desktopSession = "Hyprland";
};
};
}

View file

@ -10,7 +10,6 @@
./web
./applications.nix
./autologin.nix
./kitty.nix
./thunar.nix
];

View file

@ -2,6 +2,7 @@
{
imports = [
./autologin.nix
./hypridle.nix
./hyprlock.nix
./kanshi.nix

View file

@ -0,0 +1,13 @@
{ ... }:
{
services.greetd = {
enable = true;
settings = rec {
initial_session = {
command = ''Hyprland'';
user = "willifan";
};
default_session = initial_session;
};
};
}

View file

@ -1,4 +1,8 @@
{ ... }:
{
imports = [
./autologin.nix
];
}
}