diff options
| author | Mike Vink <mike1994vink@gmail.com> | 2022-12-09 17:38:23 +0100 |
|---|---|---|
| committer | Mike Vink <mike1994vink@gmail.com> | 2022-12-09 17:38:23 +0100 |
| commit | 16b596fcbb01a087a533247cd211ae596c01a267 (patch) | |
| tree | 9020c4bac463f2fa567258ba2901c7ee359bc3d2 /configuration.nix | |
| parent | 9fdac2dbc550671e9af216071fc72d79779ea179 (diff) | |
add lemptop
Diffstat (limited to 'configuration.nix')
| -rw-r--r-- | configuration.nix | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix new file mode 100644 index 0000000..fb72f67 --- /dev/null +++ b/configuration.nix @@ -0,0 +1,39 @@ + +{ config, pkgs, ... }: + +{ + users.users.mike = { + isNormalUser = true; + extraGroups = [ "wheel" "networkmanager" "docker"]; + }; + + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + + networking.hostName = "lemptop"; + networking.networkmanager.enable = true; + time.timeZone = "Europe/Amsterdam"; + + services.xserver.enable = true; + services.xserver.displayManager.startx.enable = true; + services.xserver.libinput.enable = true; + + sound.enable = true; + hardware.pulseaudio.enable = true; + hardware.bluetooth.enable = true; + + programs.slock.enable = true; + + environment.systemPackages = with pkgs; [ + vim + wget + git + ]; + + system.stateVersion = "22.11"; + nix.package = pkgs.nixUnstable; + nix.extraOptions = '' + experimental-features = nix-command flakes + ''; +} + |
