woah this vm shit is so so cool
This commit is contained in:
parent
26ccd2af15
commit
4d9ede5faa
7 changed files with 190 additions and 119 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
result
|
||||
*.qcow2
|
35
flake.nix
35
flake.nix
|
@ -8,23 +8,20 @@
|
|||
};
|
||||
};
|
||||
|
||||
outputs = inputs @ {
|
||||
self,
|
||||
nixpkgs,
|
||||
nixpkgs-unstable,
|
||||
home-manager,
|
||||
...
|
||||
}: let
|
||||
mkHost = hostname: graphical: {
|
||||
outputs =
|
||||
inputs @ { self
|
||||
, nixpkgs
|
||||
, nixpkgs-unstable
|
||||
, home-manager
|
||||
, ...
|
||||
}:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
mkHost = hostname: {
|
||||
imports = [
|
||||
./hosts/${hostname}/configuration.nix
|
||||
./modules/common
|
||||
(import "${home-manager}/nixos")
|
||||
(
|
||||
if graphical
|
||||
then ./modules/graphical
|
||||
else null
|
||||
)
|
||||
];
|
||||
|
||||
deployment = {
|
||||
|
@ -33,7 +30,8 @@
|
|||
allowLocalDeployment = true;
|
||||
};
|
||||
};
|
||||
in {
|
||||
in
|
||||
{
|
||||
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra;
|
||||
colmena = {
|
||||
meta = {
|
||||
|
@ -43,7 +41,14 @@
|
|||
};
|
||||
};
|
||||
|
||||
bengal = mkHost "bengal" true;
|
||||
bengal = mkHost "bengal";
|
||||
};
|
||||
nixosConfigurations.test = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [
|
||||
./hosts/test-vm/configuration.nix
|
||||
(import "${home-manager}/nixos")
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
cherrykitten.graphical.enable = true;
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
|
||||
networking.hostName = "bengal";
|
||||
|
|
39
hosts/test-vm/configuration.nix
Normal file
39
hosts/test-vm/configuration.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ config, lib, pkgs, ... }: {
|
||||
|
||||
imports = [
|
||||
../../modules/common
|
||||
../../modules/graphical
|
||||
];
|
||||
|
||||
cherrykitten.graphical.enable = false;
|
||||
|
||||
users.users.admin = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" ];
|
||||
password = "admin";
|
||||
group = "admin";
|
||||
};
|
||||
|
||||
users.groups.admin = { };
|
||||
|
||||
virtualisation.vmVariant = {
|
||||
# following configuration is added only when building VM with build-vm
|
||||
virtualisation = {
|
||||
memorySize = 8192;
|
||||
cores = 6;
|
||||
graphics = true;
|
||||
};
|
||||
};
|
||||
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
settings.PasswordAuthentication = lib.mkForce true;
|
||||
};
|
||||
|
||||
networking.firewall.allowedTCPPorts = [ 22 ];
|
||||
environment.systemPackages = with pkgs; [
|
||||
htop
|
||||
];
|
||||
|
||||
system.stateVersion = "23.10";
|
||||
}
|
|
@ -1,15 +1,28 @@
|
|||
{ lib
|
||||
, config
|
||||
, pkgs
|
||||
, ...
|
||||
}:
|
||||
let
|
||||
cfg = config.cherrykitten.common;
|
||||
in
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
../users
|
||||
./security.nix
|
||||
./yubikey.nix
|
||||
../graphical
|
||||
];
|
||||
|
||||
options.cherrykitten.common = {
|
||||
test = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "nya";
|
||||
example = "nyanya";
|
||||
};
|
||||
};
|
||||
|
||||
config = {
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
time.timeZone = "Europe/Berlin";
|
||||
|
@ -22,7 +35,7 @@
|
|||
};
|
||||
|
||||
fonts = {
|
||||
enableDefaultFonts = true;
|
||||
enableDefaultPackages = true;
|
||||
packages = with pkgs; [
|
||||
noto-fonts
|
||||
noto-fonts-cjk
|
||||
|
@ -46,4 +59,5 @@
|
|||
pinentry
|
||||
wget
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,9 +1,17 @@
|
|||
{ pkgs
|
||||
, config
|
||||
, lib
|
||||
, ...
|
||||
}:
|
||||
let
|
||||
cfg = config.cherrykitten.graphical;
|
||||
in
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
options.cherrykitten.graphical = {
|
||||
enable = lib.mkEnableOption (lib.mdDoc "graphical stuffs");
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
displayManager.sddm.enable = true;
|
||||
|
@ -53,4 +61,5 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users = {
|
||||
sammy.imports = [./sammy.nix];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue