added Jovian-NixOS
This commit is contained in:
parent
a7bfc8c394
commit
0b1331c6d4
9 changed files with 89 additions and 2 deletions
|
@ -1,4 +1,7 @@
|
|||
{ ... }:
|
||||
{
|
||||
|
||||
imports = [
|
||||
./jovian.nix
|
||||
];
|
||||
}
|
||||
|
|
17
users/willifan/Lillie/jovian.nix
Normal file
17
users/willifan/Lillie/jovian.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -10,7 +10,6 @@
|
|||
./web
|
||||
|
||||
./applications.nix
|
||||
./autologin.nix
|
||||
./kitty.nix
|
||||
./thunar.nix
|
||||
];
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
./autologin.nix
|
||||
./hypridle.nix
|
||||
./hyprlock.nix
|
||||
./kanshi.nix
|
||||
|
|
13
users/willifan/desktop/hyprland/Puenktchen/autologin.nix
Normal file
13
users/willifan/desktop/hyprland/Puenktchen/autologin.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ ... }:
|
||||
{
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
settings = rec {
|
||||
initial_session = {
|
||||
command = ''Hyprland'';
|
||||
user = "willifan";
|
||||
};
|
||||
default_session = initial_session;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,4 +1,8 @@
|
|||
{ ... }:
|
||||
{
|
||||
|
||||
imports = [
|
||||
./autologin.nix
|
||||
];
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue