Compare commits
4 Commits
modern
...
10e9e6e426
| Author | SHA1 | Date | |
|---|---|---|---|
| 10e9e6e426 | |||
| e11b3547d4 | |||
| d80c5c1074 | |||
| 954407bfa0 |
@@ -8,19 +8,19 @@
|
|||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
[ (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.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-amd" ];
|
boot.kernelModules = [ "kvm-amd" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" =
|
||||||
{ device = "/dev/disk/by-uuid/532ac73e-1370-4e4d-9d5a-15033de0b96d";
|
{ device = "/dev/disk/by-uuid/9f701bae-3392-4927-b27d-a905dd67edab";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=@" ];
|
options = [ "subvol=@" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" =
|
||||||
{ device = "/dev/disk/by-uuid/1368-D3F3";
|
{ device = "/dev/disk/by-uuid/894C-F998";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0077" "dmask=0077" ];
|
options = [ "fmask=0077" "dmask=0077" ];
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -69,6 +69,8 @@
|
|||||||
"$mod ALT, A, global, caelestia:showall"
|
"$mod ALT, A, global, caelestia:showall"
|
||||||
"$mod ALT, L, global, caelestia:lock"
|
"$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.
|
# 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,
|
# 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.
|
# and `caelestia:lock` is a quickshell internal, you might need to reconsider.
|
||||||
|
|||||||
@@ -4,11 +4,12 @@
|
|||||||
system,
|
system,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
caelestia-shell = pkgs.fetchFromGitHub {
|
caelestia-shell = pkgs.fetchFromGitea {
|
||||||
|
domain = "git.sakamoto.dev";
|
||||||
owner = "caelestia-dots";
|
owner = "caelestia-dots";
|
||||||
repo = "shell";
|
repo = "shell";
|
||||||
rev = "main";
|
rev = "main";
|
||||||
sha256 = "sha256-FHPCSy/Fd9hIpFA2BxhTkbwBtY9vtvsEUYC3+ZX6zNQ=";
|
sha256 = "sha256-y9Wkh+9ND8GcUYhybXdEPTVY6gUb0jclnbbVi70l70Y=";
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
@@ -20,7 +21,6 @@ in {
|
|||||||
grim
|
grim
|
||||||
foot
|
foot
|
||||||
hyprpicker
|
hyprpicker
|
||||||
heroic-unwrapped
|
|
||||||
qalculate-qt
|
qalculate-qt
|
||||||
fuzzel
|
fuzzel
|
||||||
inotify-tools
|
inotify-tools
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
# jovian.steamos.enableBluetoothConfig = true;
|
# jovian.steamos.enableBluetoothConfig = true;
|
||||||
# jovian.steamos.enableMesaPatches = true;
|
# jovian.steamos.enableMesaPatches = true;
|
||||||
jovian.steamos.useSteamOSConfig = true;
|
jovian.steamos.useSteamOSConfig = false;
|
||||||
jovian.decky-loader.extraPythonPackages = pythonPackages:
|
jovian.decky-loader.extraPythonPackages = pythonPackages:
|
||||||
with pythonPackages; [
|
with pythonPackages; [
|
||||||
requests
|
requests
|
||||||
@@ -31,8 +31,12 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
# jovian.devices.steamdeck.enableControllerUdevRules = true;
|
# jovian.devices.steamdeck.enableControllerUdevRules = true;
|
||||||
|
|
||||||
|
services.flatpak.enable = true;
|
||||||
hardware = {
|
hardware = {
|
||||||
xone.enable = true;
|
xone.enable = true;
|
||||||
|
opengl.enable = true;
|
||||||
|
opengl.driSupport32Bit = true;
|
||||||
};
|
};
|
||||||
programs.nix-ld = {
|
programs.nix-ld = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user