update nvidia driver, install ghostty and other things

This commit is contained in:
Ulic-youthlic 2024-12-28 18:56:04 +08:00
parent 9a525dadfc
commit 19ef41633b
11 changed files with 319 additions and 166 deletions

View file

@ -1,6 +1,7 @@
{
pkgs,
config,
ghostty,
...
}:
{
@ -12,6 +13,7 @@
./rime-ice.nix
./firefox.nix
./foot
./ghostty
];
xdg.userDirs = {
enable = true;
@ -38,6 +40,7 @@
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-source-record
input-overlay
];
};
home.packages = with pkgs; [
@ -47,9 +50,9 @@
which
gnused
gnutar
bat
gawk
zstd
gnupg
tree
nerd-fonts.victor-mono
ouch
@ -57,6 +60,7 @@
qq
telegram-desktop
taplo
ghostty.packages."${pkgs.system}".default
];
programs.ssh = {
enable = true;
@ -78,4 +82,18 @@
};
};
};
programs.chromium = {
enable = true;
commandLineArgs = [
"--ozone-platform=wayland"
"--enable-wayland-ime=true"
"--enable-features=UseOzonePlatform"
];
};
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = [ "qemu:///system" ];
uris = [ "qemu:///system" ];
};
};
}