Compare commits

..

No commits in common. "6f2936f567ef1a5bbcbb6d6a9d9881bd95af4638" and "23f407b824028dbf35bcf916673f14421fa48be4" have entirely different histories.

7 changed files with 17 additions and 28 deletions

View File

@ -23,6 +23,8 @@
]; ];
}; };
programs.adb.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
home-manager home-manager
]; ];

View File

@ -13,12 +13,27 @@
sl sl
]; ];
home.file = {
"wallpaper" = {
source = builtins.toPath ../../wallpapers;
recursive = true;
force = true;
};
};
home.sessionVariables = { home.sessionVariables = {
EDITOR = "vim"; EDITOR = "vim";
GTK_THEME = "Adwaita:dark"; GTK_THEME = "Adwaita:dark";
MANPAGER = "nvim +Man!"; MANPAGER = "nvim +Man!";
}; };
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = [ "qemu:///system" ];
uris = [ "qemu:///system" ];
};
};
programs.zsh = { programs.zsh = {
enable = true; enable = true;
enableCompletion = true; enableCompletion = true;

View File

@ -27,8 +27,6 @@
backupFileExtension = "backup"; backupFileExtension = "backup";
}; };
programs.adb.enable = true;
system.stateVersion = "24.11"; system.stateVersion = "24.11";
} }

View File

@ -5,7 +5,6 @@
./lf ./lf
./notif ./notif
./terminal ./terminal
./virt
./wm/hyprland.nix ./wm/hyprland.nix
]; ];
} }

View File

@ -1,6 +0,0 @@
{ ... }:
{
imports = [
./qemu.nix
];
}

View File

@ -1,14 +0,0 @@
{ lib, smayzy, ... }:
let
inherit (lib) mkIf;
in
{
config = mkIf smayzy.virt.enable {
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = [ "qemu:///system" ];
uris = [ "qemu:///system" ];
};
};
};
}

View File

@ -17,11 +17,6 @@ in
recursive = true; recursive = true;
force = true; force = true;
}; };
"wallpaper" = {
source = builtins.toPath ../../../wallpapers;
recursive = true;
force = true;
};
} }
(mkIf smayzy.desktop.enable { (mkIf smayzy.desktop.enable {