Compare commits
No commits in common. "375a3f379ea90d770f643b7cd8b7e1705a0f14a7" and "c52624db8f026314f4479f50590a5153d5c616c7" have entirely different histories.
375a3f379e
...
c52624db8f
5 changed files with 23 additions and 29 deletions
|
@ -1,9 +0,0 @@
|
|||
{ lib, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./vm-base.nix
|
||||
../nix-os/desktopManagers/gnome.nix
|
||||
../nix-os/displayManagers/gdm.nix
|
||||
];
|
||||
}
|
|
@ -1,21 +1,19 @@
|
|||
{ lib, modulesPath, ... }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
"${modulesPath}/virtualisation/qemu-vm.nix"
|
||||
../nix-os/account.nix
|
||||
../nix-os/core.nix
|
||||
../nix-os/locale.nix
|
||||
../nix-os/polkit/disable-shutdown.nix
|
||||
../nix-os/docker.nix
|
||||
../nix-os/desktopManagers/gnome.nix
|
||||
../nix-os/displayManagers/gdm.nix
|
||||
#../nix-os/desktop/kde-plasma.nix
|
||||
../nix-os/shell.nix
|
||||
../nix-os/udev.nix
|
||||
../nix-os/virtualization.nix
|
||||
../nix-os/polkit/disable-shutdown.nix
|
||||
../nix-os/locale.nix
|
||||
../nix-os/adb.nix
|
||||
../nix-os/account.nix
|
||||
../nix-os/xdg-default-apps.nix
|
||||
../nix-os/udev.nix
|
||||
];
|
||||
|
||||
config = {
|
||||
services.syncthing.enable = lib.mkForce false;
|
||||
virtualisation = {
|
||||
memorySize = 4096;
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
4
lock.nix
4
lock.nix
|
@ -4,7 +4,7 @@
|
|||
sha256 = "1rq8mrlmbzpcbv9ys0x88alw30ks70jlmvnfr2j8v830yy5wvw7h";
|
||||
};
|
||||
nixpkgs = {
|
||||
revision = "883180e6550c1723395a3a342f830bfc5c371f6b";
|
||||
sha256 = "01axrf25mahbxmp6vgfgx09dflbyaavr5liynkp6rpm4lkacr27f";
|
||||
revision = "05405724efa137a0b899cce5ab4dde463b4fd30b";
|
||||
sha256 = "06490pn22x9xl4chfx12iwdgx7nlbn14v8x05rnv2y1nancljisl";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, pkgs, unstablePkgs, ... }:
|
||||
{ config, pkgs, unstablePkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
|
@ -11,7 +11,8 @@
|
|||
extraGroups = [
|
||||
"users"
|
||||
"wheel"
|
||||
] ++ lib.optional config.programs.adb.enable "adbusers";
|
||||
(if config.programs.adb.enable then "adbusers" else null)
|
||||
];
|
||||
linger = true;
|
||||
initialPassword = "nixos";
|
||||
packages = with pkgs; [
|
||||
|
|
|
@ -65,11 +65,15 @@
|
|||
"color-picker@tuberry"
|
||||
];
|
||||
favorite-apps = [
|
||||
"kitty.desktop"
|
||||
(if builtins.elem pkgs.kitty config.environment.systemPackages then
|
||||
"kitty.desktop"
|
||||
else none)
|
||||
"vivaldi-stable.desktop"
|
||||
"code.desktop"
|
||||
"org.gnome.Nautilus.desktop"
|
||||
"steam.desktop"
|
||||
(if config.programs.steam.enable then
|
||||
"steam.desktop"
|
||||
else none)
|
||||
"pavucontrol.desktop"
|
||||
];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue