mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
Gabriel Arazas
0cd8fa46c6
There are some things missing such as the capability to hold some data for generating multiple theme configs for programs. I could implement that with a quick custom module instead.
58 lines
1.7 KiB
Nix
58 lines
1.7 KiB
Nix
# A very basic NixOS VM configuration intended for testing out the given
|
|
# workflow module. It's a good thing the baseline for the configuration is not
|
|
# tedious to set up for simpler configs like this.
|
|
{ workflow, extraModules ? [ ], extraHomeModules ? [ ] }:
|
|
|
|
let
|
|
pkgs = import <nixpkgs> { };
|
|
config' = import <config> { };
|
|
lib = pkgs.lib.extend (import <config/lib/extras/extend-lib.nix>);
|
|
in
|
|
import <nixpkgs/nixos/lib/eval-config.nix> {
|
|
inherit lib;
|
|
modules = extraModules ++ [
|
|
<config/modules/nixos>
|
|
<config/modules/nixos/_private>
|
|
<config/modules/nixos/profiles/generic.nix>
|
|
<config/modules/nixos/profiles/nix-conf.nix>
|
|
<home-manager/nixos>
|
|
<disko/module.nix>
|
|
<sops-nix/modules/sops>
|
|
<nixos-generators/formats/vm.nix>
|
|
<nixos-generators/format-module.nix>
|
|
({ config, lib, pkgs, ... }: {
|
|
imports = [
|
|
(lib.private.mapHomeManagerUser "alice" {
|
|
password = "";
|
|
extraGroups = [ "wheel" ];
|
|
description = "There is no password";
|
|
isNormalUser = true;
|
|
createHome = true;
|
|
home = "/home/alice";
|
|
})
|
|
];
|
|
|
|
config = {
|
|
home-manager.useUserPackages = lib.mkDefault true;
|
|
home-manager.useGlobalPkgs = lib.mkDefault true;
|
|
home-manager.sharedModules = extraHomeModules ++ [
|
|
<config/modules/home-manager>
|
|
<config/modules/home-manager/_private>
|
|
<sops-nix/modules/home-manager/sops.nix>
|
|
({ config, lib, ... }: {
|
|
xdg.userDirs.createDirectories = lib.mkForce true;
|
|
})
|
|
];
|
|
|
|
workflows.workflows.${workflow}.enable = true;
|
|
|
|
nixpkgs.overlays = [
|
|
config'.overlays.default
|
|
];
|
|
|
|
system.stateVersion = "23.11";
|
|
};
|
|
})
|
|
];
|
|
}
|