Compare commits

...

2 Commits

Author SHA1 Message Date
Eli Ribble 38e29dec5f Switch to hand-crafted steam autostart
Using the actual steam.desktop starts up the default steam mode, not big
picture, which is what I want. I pulled this content from the
steam.desktop file, so it may need to get adjusted in the far future.
2024-09-25 19:10:27 +00:00
Eli Ribble 285f461117 Don't turn on bluetooth on boot.
I'm having problems with the bluetooth working correctly when it starts,
so instead I'm going to keep it off and try to manually manage it until
I know what the process for getting it live.
2024-09-25 19:09:40 +00:00
1 changed files with 15 additions and 2 deletions

View File

@ -18,12 +18,25 @@
boot.loader.efi.canTouchEfiVariables = true;
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
hardware.bluetooth.powerOnBoot = false;
hardware.xone.enable = true; # support for the xbox controller USB dongle
home-manager.useGlobalPkgs = true;
home-manager.users.eliribble = { pkgs, ... }: {
home.file.".config/autostart/steam.desktop".source = "${pkgs.steam}/share/applications/steam.desktop";
home.file.".config/autostart/steam.desktop".text = ''
[Desktop Entry]
Name=Steam
Comment=Application for managing and playing games on Steam
Exec=steam %U -bigpicture
Icon=steam
Terminal=false
Type=Application
Categories=Network;FileTransfer;Game;
MimeType=x-scheme-handler/steam;x-scheme-handler/steamlink;
Actions=Store;Community;Library;Servers;Screenshots;News;Settings;BigPicture;Friends;
PrefersNonDefaultGPU=true
X-KDE-RunOnDiscreteGpu=true
'';
# home.packages = [ pkgs.httpie ];
programs.fish.enable = true;