This commit is contained in:
Annika Merris 2024-05-18 16:23:14 -04:00
parent 68fad0c3b4
commit f1070ffc2b
3 changed files with 19 additions and 8 deletions

View file

@ -6,9 +6,11 @@
with inputs;
inputs.nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
system = "x86_64-linux";
modules = [
globals
lix-module.nixosModules.default
home-manager.nixosModules.home-manager
# ../../modules/common
../../modules/nixos
@ -62,7 +64,13 @@ inputs.nixpkgs.lib.nixosSystem {
extraGroups = [ "networkmanager" "wheel" ];
};
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with inputs.pkgs; [];
environment.systemPackages = [
pkgs.git
pkgs.vim
pkgs.curl
pkgs.wget
pkgs.vscode
];
system.stateVersion = "23.11";
}