test: dn-lap test build

This commit is contained in:
DACHXY 2024-12-24 10:44:37 +08:00
parent 36b9f4e2b0
commit 04ce8d76ba
25 changed files with 245 additions and 160 deletions

View file

@ -1,6 +1,5 @@
let configDir = ../config;
in
{
in {
home.file = {
".config/nvim" = {
source = "${configDir}/nvim";

View file

@ -28,7 +28,8 @@
#XDG_BIN_HOME = "\${HOME}/.local/bin";
XDG_DATA_HOME = "\${HOME}/.local/share";
GTK_IM_MODULE = "";
XDG_DATA_DIRS = "\${XDG_DATA_DIRS}:/usr/share:/var/lib/flatpak/exports/share:\${HOME}/.local/share/flatpak/exports/share";
XDG_DATA_DIRS =
"\${XDG_DATA_DIRS}:/usr/share:/var/lib/flatpak/exports/share:\${HOME}/.local/share/flatpak/exports/share";
# GPU
LIBVA_DRIVER_NAME = "nvidia";

View file

@ -1,8 +1,7 @@
let
userName = "dachxy";
email = "Danny10132024@gmail.com";
in
{
in {
programs.git = {
enable = true;
userName = userName;

View file

@ -1,5 +1,4 @@
{ pkgs, ... }:
{
{ pkgs, ... }: {
programs = {
neovim = {
enable = true;

View file

@ -1,5 +1,4 @@
{ pkgs, ... }:
{
{ pkgs, ... }: {
programs = {
# nushell = {
# enable = true;
@ -12,10 +11,12 @@
interactiveShellInit = ''
set fish_greeting # Disable greeting
'';
plugins = [
{ name = "grc"; src = pkgs.fishPlugins.grc.src; }
# Other plugins can be located in config file
];
plugins = [{
name = "grc";
src = pkgs.fishPlugins.grc.src;
}
# Other plugins can be located in config file
];
};
carapace = {

View file

@ -1,5 +1,4 @@
{ ... }:
{
{ ... }: {
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = [ "qemu:///system" ];