added vm auto-resizing screens.
This commit is contained in:
parent
43a47321e4
commit
07a4bf6477
11 changed files with 70 additions and 38 deletions
|
@ -5,11 +5,11 @@
|
|||
...
|
||||
}: {
|
||||
imports = [
|
||||
../modules/home-manager/terminal/zsh.nix
|
||||
../modules/home-manager/terminal/git.nix
|
||||
../modules/home-manager/terminal/zellij
|
||||
../modules/home-manager/terminal/ssh-agent.nix
|
||||
../modules/home-manager/terminal/direnv.nix
|
||||
../../modules/home-manager/terminal/zsh.nix
|
||||
../../modules/home-manager/terminal/git.nix
|
||||
../../modules/home-manager/terminal/zellij
|
||||
../../modules/home-manager/terminal/ssh-agent.nix
|
||||
../../modules/home-manager/terminal/direnv.nix
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
sshfs
|
|
@ -6,10 +6,10 @@
|
|||
}: {
|
||||
imports = [
|
||||
./minimal-terminal.nix
|
||||
../modules/home-manager/terminal/nushell
|
||||
../modules/home-manager/terminal/starship.nix
|
||||
../modules/home-manager/terminal/voice.nix
|
||||
../modules/home-manager/terminal/tiny-irc.nix
|
||||
../../modules/home-manager/terminal/nushell
|
||||
../../modules/home-manager/terminal/starship.nix
|
||||
../../modules/home-manager/terminal/voice.nix
|
||||
../../modules/home-manager/terminal/tiny-irc.nix
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
tre-command
|
13
roles/nixos/graphical-vm.nix
Normal file
13
roles/nixos/graphical-vm.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
#note: needs to have something that autostarts desktop files.
|
||||
services.spice-vdagentd.enable = true;
|
||||
imports = [
|
||||
./vm.nix
|
||||
];
|
||||
host.gui.enable = true;
|
||||
}
|
10
roles/nixos/vm.nix
Normal file
10
roles/nixos/vm.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
services.qemuGuest.enable = true;
|
||||
host.isVm = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue