Install more packages

This commit is contained in:
Valentin Brandl
2022-02-18 17:12:39 +01:00
parent 0bd17fc562
commit 96f5e9f15c
9 changed files with 71 additions and 16 deletions

View File

@ -8,8 +8,14 @@ inputs.nixpkgs.lib.nixosSystem {
modules = [
{ system.stateVersion = "21.11"; }
(import ./common.nix inputs)
(import ./dev.nix inputs)
(import ./entertainment.nix inputs)
(import ./office.nix inputs)
({ pkgs, lib, ... }: {
networking.hostName = hostname;
networking = {
hostName = hostname;
interfaces.eno1.useDHCP = true;
};
users.users.me = {
isNormalUser = true;
createHome = true;