Switch boot partition (#126)

This commit is contained in:
Patrick Stevens
2025-09-06 15:21:17 +01:00
committed by GitHub
parent d56963e330
commit 2d09c607d2
6 changed files with 51 additions and 30 deletions

View File

@@ -13,6 +13,8 @@
enable32Bit = true;
};
hardware.bluetooth.enable = true;
security.rtkit.enable = true;
services.pipewire = {
enable = true;

View File

@@ -5,10 +5,7 @@
hardware.asahi.peripheralFirmwareDirectory = ./../firmware;
hardware.asahi = {
useExperimentalGPUDriver = true;
experimentalGPUInstallMode = "overlay";
setupAsahiSound = true;
withRust = true;
};
hardware.graphics.enable = true;
hardware.bluetooth.enable = true;
@@ -75,7 +72,6 @@
environment.systemPackages = [
pkgs.vim
pkgs.wget
pkgs.mesa-asahi-edge
];
environment.loginShellInit = ''

View File

@@ -321,7 +321,6 @@
++ (
if nixpkgs.stdenv.isLinux
then [
nixpkgs.ghostty
nixpkgs.kdePackages.xwaylandvideobridge
nixpkgs.protonmail-bridge
nixpkgs.pinentry

View File

@@ -1,6 +1,6 @@
{pkgs, ...}: {
programs.ghostty = {
enable = true;
enable = pkgs.stdenv.isLinux;
enableZshIntegration = true;
settings = {
keybind = [
@@ -9,7 +9,10 @@
};
};
home.packages = [
pkgs.ghostty
];
home.packages =
if pkgs.stdenv.isLinux
then [
pkgs.ghostty
]
else [];
}