This Is How The Repo I Am Basing This On Seems To Do It

This commit is contained in:
Annika Merris 2024-05-18 16:44:36 -04:00
parent 242b5b46ec
commit a69db9468d
2 changed files with 17 additions and 8 deletions

View file

@ -11,7 +11,7 @@ inputs.nixpkgs.lib.nixosSystem {
globals globals
lix-module.nixosModules.default lix-module.nixosModules.default
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
# ../../modules/common ../../modules/common
../../modules/nixos ../../modules/nixos
{ {
# something with overlays, I don't get those yet. # something with overlays, I don't get those yet.
@ -63,13 +63,6 @@ inputs.nixpkgs.lib.nixosSystem {
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" ];
}; };
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
environment.systemPackages = [
pkgs.git
pkgs.vim
pkgs.curl
pkgs.wget
pkgs.vscode
];
system.stateVersion = "23.11"; system.stateVersion = "23.11";
} }

View file

@ -0,0 +1,16 @@
{ config, lib, pkgs, ...}:
{
config =
let
stateVersion = "23.11";
in
{
environment.systemPackages = with pkgs; [
git
vim
wget
curl
vscode
];
};
}