diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2021-10-11 21:08:05 +0200 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2021-10-11 21:08:05 +0200 |
commit | cb0880e23e22f285a7f8525abf4b168e7ed28568 (patch) | |
tree | 393c9306bd08c52409c34a640f6d3f2b195b86a6 | |
parent | dba643ec19f304ddc1b2967a5aeb767b3867293a (diff) |
trying out nixos
-rwxr-xr-x | .autostart | 2 | ||||
-rw-r--r-- | .zshrc | 5 | ||||
-rwxr-xr-x | build | 2 | ||||
-rw-r--r-- | nix/configuration.nix | 69 | ||||
-rwxr-xr-x | nixbuild | 5 |
5 files changed, 81 insertions, 2 deletions
@@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env zsh wait_time=0.1 # user arandr to generate startup @@ -8,6 +8,11 @@ path=( "$HOME/bin" "/usr/local/games" "/usr/local/bin" "/usr/local/sbin" + "/run/wrappers/bin" + "/home/tom/.nix-profile/bin" + "/etc/profiles/per-user/tom/bin" + "/nix/var/nix/profiles/default/bin" + "/run/current-system/sw/bin" ) export PATH EDITOR=nvim @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # var setup RC_DIR=$HOME'/src/rc' diff --git a/nix/configuration.nix b/nix/configuration.nix new file mode 100644 index 0000000..aa6f3e0 --- /dev/null +++ b/nix/configuration.nix @@ -0,0 +1,69 @@ +{ config, pkgs, ... }: + +{ + imports = [ ./hardware-configuration.nix ]; + + networking.hostName = "nixos"; + boot.loader.grub.device = "/dev/sda"; + networking.interfaces.wlp3s0.useDHCP = true; + + boot.loader.grub.enable = true; + time.timeZone = "Europe/Berlin"; + networking.networkmanager.enable = true; + i18n.defaultLocale = "en_US.UTF-8"; + + users.users.tom = { + isNormalUser = true; + extraGroups = [ "wheel" "networkmanager" "lxd"]; + shell = pkgs.zsh; + }; + + services.xserver.enable = true; + services.xserver.autorun = false; + services.xserver.displayManager.startx.enable = true; + services.xserver.libinput.enable = true; + + environment.variables.EDITOR = "nvim"; + environment.systemPackages = with pkgs; [ + neovim + git + htop + ncmpcpp + w3m + firefox + wget + curl + dmenu + pass + feh + nixfmt + neomutt + acpi + ranger + mpc_cli + lm_sensors + ]; + + programs.gnupg.agent = { + enable = true; + pinentryFlavor = "gtk2"; + enableSSHSupport = true; + }; + + programs.zsh.enable = true; + programs.zsh.autosuggestions.enable = true; + programs.zsh.syntaxHighlighting.enable = true; + + fonts.fonts = with pkgs; [ hermit ]; + + system.stateVersion = "21.05"; + + virtualisation.lxd.enable = true; + + swapDevices = [ + { + device = "/swap"; + size = 4096; + } + ]; +} diff --git a/nixbuild b/nixbuild new file mode 100755 index 0000000..0012392 --- /dev/null +++ b/nixbuild @@ -0,0 +1,5 @@ +#!/usr/bin/env nix-shell +#!nix-shell -p xorg.libX11.dev xorg.libXft xorg.libXinerama git bash pkg-config +#!nix-shell -i bash +./build + |