mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2026-02-04 14:51:12 -05:00
Sync
This commit is contained in:
parent
68fad0c3b4
commit
f1070ffc2b
3 changed files with 19 additions and 8 deletions
|
|
@ -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";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue