Compare commits
3 Commits
23f407b824
...
6f2936f567
| Author | SHA1 | Date | |
|---|---|---|---|
| 6f2936f567 | |||
| f9fae2f75a | |||
| ca3c77768d |
@ -23,8 +23,6 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.adb.enable = true;
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
home-manager
|
home-manager
|
||||||
];
|
];
|
||||||
|
|||||||
@ -13,27 +13,12 @@
|
|||||||
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;
|
||||||
|
|||||||
@ -26,6 +26,8 @@
|
|||||||
};
|
};
|
||||||
backupFileExtension = "backup";
|
backupFileExtension = "backup";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.adb.enable = true;
|
||||||
|
|
||||||
system.stateVersion = "24.11";
|
system.stateVersion = "24.11";
|
||||||
|
|
||||||
|
|||||||
@ -5,6 +5,7 @@
|
|||||||
./lf
|
./lf
|
||||||
./notif
|
./notif
|
||||||
./terminal
|
./terminal
|
||||||
|
./virt
|
||||||
./wm/hyprland.nix
|
./wm/hyprland.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
6
modules/home-manager/virt/default.nix
Normal file
6
modules/home-manager/virt/default.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./qemu.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
14
modules/home-manager/virt/qemu.nix
Normal file
14
modules/home-manager/virt/qemu.nix
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{ 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,6 +17,11 @@ 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 {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user