task | reformatted with nixfmt
This commit is contained in:
parent
e3fea64660
commit
c3a0a0847f
119 changed files with 1010 additions and 2135 deletions
|
|
@ -1,10 +1,4 @@
|
|||
{
|
||||
modulesPath,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
{ modulesPath, config, lib, pkgs, ... }: {
|
||||
imports = [
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
(modulesPath + "/profiles/qemu-guest.nix")
|
||||
|
|
@ -12,13 +6,12 @@
|
|||
];
|
||||
boot = {
|
||||
kernelPackages = pkgs.linuxPackages_latest;
|
||||
kernelParams = ["consoleblank=60"];
|
||||
kernelParams = [ "consoleblank=60" ];
|
||||
loader = {
|
||||
timeout = 10;
|
||||
/*
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
};
|
||||
/* systemd-boot = {
|
||||
enable = true;
|
||||
};
|
||||
*/
|
||||
grub = {
|
||||
device = "nodev";
|
||||
|
|
@ -35,17 +28,12 @@
|
|||
enable = true;
|
||||
theme = "breeze";
|
||||
};
|
||||
kernel = {
|
||||
sysctl = {"vm.swappiness" = 10;};
|
||||
};
|
||||
kernel = { sysctl = { "vm.swappiness" = 10; }; };
|
||||
};
|
||||
services.openssh.enable = true;
|
||||
|
||||
environment.systemPackages = map lib.lowPrio [
|
||||
pkgs.curl
|
||||
pkgs.git
|
||||
pkgs.git-crypt
|
||||
];
|
||||
environment.systemPackages =
|
||||
map lib.lowPrio [ pkgs.curl pkgs.git pkgs.git-crypt ];
|
||||
|
||||
users.users.root = {
|
||||
initialPassword = "changeme";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue