mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2026-02-04 14:19:05 -05:00
This Is How The Repo I Am Basing This On Seems To Do It
This commit is contained in:
parent
242b5b46ec
commit
a69db9468d
2 changed files with 17 additions and 8 deletions
|
|
@ -11,7 +11,7 @@ inputs.nixpkgs.lib.nixosSystem {
|
|||
globals
|
||||
lix-module.nixosModules.default
|
||||
home-manager.nixosModules.home-manager
|
||||
# ../../modules/common
|
||||
../../modules/common
|
||||
../../modules/nixos
|
||||
{
|
||||
# something with overlays, I don't get those yet.
|
||||
|
|
@ -63,13 +63,6 @@ inputs.nixpkgs.lib.nixosSystem {
|
|||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
};
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
environment.systemPackages = [
|
||||
pkgs.git
|
||||
pkgs.vim
|
||||
pkgs.curl
|
||||
pkgs.wget
|
||||
pkgs.vscode
|
||||
];
|
||||
|
||||
system.stateVersion = "23.11";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,16 @@
|
|||
{ config, lib, pkgs, ...}:
|
||||
{
|
||||
config =
|
||||
let
|
||||
stateVersion = "23.11";
|
||||
in
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
vim
|
||||
wget
|
||||
curl
|
||||
vscode
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue