4 Commits

Author SHA1 Message Date
kenji 10e9e6e426 added more support 2025-07-22 20:03:46 -05:00
kenji e11b3547d4 fix unmatched sha 2025-07-22 20:03:39 -05:00
kenji d80c5c1074 added alternative to qs main menu 2025-07-22 20:03:27 -05:00
kenji 954407bfa0 modified hardware 2025-07-22 20:03:15 -05:00
4 changed files with 13 additions and 7 deletions
+3 -3
View File
@@ -8,19 +8,19 @@
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" ];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/532ac73e-1370-4e4d-9d5a-15033de0b96d";
{ device = "/dev/disk/by-uuid/9f701bae-3392-4927-b27d-a905dd67edab";
fsType = "btrfs";
options = [ "subvol=@" ];
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/1368-D3F3";
{ device = "/dev/disk/by-uuid/894C-F998";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
+2
View File
@@ -69,6 +69,8 @@
"$mod ALT, A, global, caelestia:showall"
"$mod ALT, L, global, caelestia:lock"
"$mod, SPACE, exec, rofi -show drun"
# Restore lock - these are `bindl` in your original, but `exec` should be fine here.
# However, `bindl` is typically for a *release* event. If `caelestia shell -d` is a daemon,
# and `caelestia:lock` is a quickshell internal, you might need to reconsider.
+3 -3
View File
@@ -4,11 +4,12 @@
system,
...
}: let
caelestia-shell = pkgs.fetchFromGitHub {
caelestia-shell = pkgs.fetchFromGitea {
domain = "git.sakamoto.dev";
owner = "caelestia-dots";
repo = "shell";
rev = "main";
sha256 = "sha256-FHPCSy/Fd9hIpFA2BxhTkbwBtY9vtvsEUYC3+ZX6zNQ=";
sha256 = "sha256-y9Wkh+9ND8GcUYhybXdEPTVY6gUb0jclnbbVi70l70Y=";
};
in {
imports = [
@@ -20,7 +21,6 @@ in {
grim
foot
hyprpicker
heroic-unwrapped
qalculate-qt
fuzzel
inotify-tools
+5 -1
View File
@@ -23,7 +23,7 @@
# jovian.steamos.enableBluetoothConfig = true;
# jovian.steamos.enableMesaPatches = true;
jovian.steamos.useSteamOSConfig = true;
jovian.steamos.useSteamOSConfig = false;
jovian.decky-loader.extraPythonPackages = pythonPackages:
with pythonPackages; [
requests
@@ -31,8 +31,12 @@
];
# jovian.devices.steamdeck.enableControllerUdevRules = true;
services.flatpak.enable = true;
hardware = {
xone.enable = true;
opengl.enable = true;
opengl.driSupport32Bit = true;
};
programs.nix-ld = {
enable = true;