mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2026-02-04 15:46:43 -05:00
Options Was In the Wrong Section
This commit is contained in:
parent
07dcc4a0f1
commit
ef783dbc21
1 changed files with 6 additions and 6 deletions
|
|
@ -1,16 +1,16 @@
|
||||||
{ config, lib, pkgs, ...}:
|
{ config, lib, pkgs, ...}:
|
||||||
{
|
{
|
||||||
|
options = {
|
||||||
|
user = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
description = "Primary user of the system";
|
||||||
|
};
|
||||||
|
};
|
||||||
config =
|
config =
|
||||||
let
|
let
|
||||||
stateVersion = "23.11";
|
stateVersion = "23.11";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options = {
|
|
||||||
user = lib.mkOption {
|
|
||||||
type = lib.types.str;
|
|
||||||
description = "Primary user of the system";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
git
|
git
|
||||||
vim
|
vim
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue