Compare commits
No commits in common. "6f2936f567ef1a5bbcbb6d6a9d9881bd95af4638" and "23f407b824028dbf35bcf916673f14421fa48be4" have entirely different histories.
6f2936f567
...
23f407b824
@ -23,6 +23,8 @@
|
||||
];
|
||||
};
|
||||
|
||||
programs.adb.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
home-manager
|
||||
];
|
||||
|
||||
@ -13,12 +13,27 @@
|
||||
sl
|
||||
];
|
||||
|
||||
home.file = {
|
||||
"wallpaper" = {
|
||||
source = builtins.toPath ../../wallpapers;
|
||||
recursive = true;
|
||||
force = true;
|
||||
};
|
||||
};
|
||||
|
||||
home.sessionVariables = {
|
||||
EDITOR = "vim";
|
||||
GTK_THEME = "Adwaita:dark";
|
||||
MANPAGER = "nvim +Man!";
|
||||
};
|
||||
|
||||
dconf.settings = {
|
||||
"org/virt-manager/virt-manager/connections" = {
|
||||
autoconnect = [ "qemu:///system" ];
|
||||
uris = [ "qemu:///system" ];
|
||||
};
|
||||
};
|
||||
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
|
||||
@ -26,8 +26,6 @@
|
||||
};
|
||||
backupFileExtension = "backup";
|
||||
};
|
||||
|
||||
programs.adb.enable = true;
|
||||
|
||||
system.stateVersion = "24.11";
|
||||
|
||||
|
||||
@ -5,7 +5,6 @@
|
||||
./lf
|
||||
./notif
|
||||
./terminal
|
||||
./virt
|
||||
./wm/hyprland.nix
|
||||
];
|
||||
}
|
||||
|
||||
@ -1,6 +0,0 @@
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./qemu.nix
|
||||
];
|
||||
}
|
||||
@ -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" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
@ -17,11 +17,6 @@ in
|
||||
recursive = true;
|
||||
force = true;
|
||||
};
|
||||
"wallpaper" = {
|
||||
source = builtins.toPath ../../../wallpapers;
|
||||
recursive = true;
|
||||
force = true;
|
||||
};
|
||||
}
|
||||
|
||||
(mkIf smayzy.desktop.enable {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user