mirror of
https://github.com/Smaug123/nix-dotfiles
synced 2025-10-12 09:58:40 +00:00
Switch boot partition (#126)
This commit is contained in:
@@ -13,6 +13,8 @@
|
||||
enable32Bit = true;
|
||||
};
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
|
@@ -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 = ''
|
||||
|
@@ -321,7 +321,6 @@
|
||||
++ (
|
||||
if nixpkgs.stdenv.isLinux
|
||||
then [
|
||||
nixpkgs.ghostty
|
||||
nixpkgs.kdePackages.xwaylandvideobridge
|
||||
nixpkgs.protonmail-bridge
|
||||
nixpkgs.pinentry
|
||||
|
@@ -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 [];
|
||||
}
|
||||
|
Reference in New Issue
Block a user