summaryrefslogtreecommitdiff
path: root/depo/hikuj-zupip
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2019-08-29 06:22:37 -0700
committerBen Sima <ben@bsima.me>2019-08-29 06:26:16 -0700
commitcac8297fa42721e09d96614c1b16ab17d2c383d0 (patch)
tree245ab2c4febcf3da3abfcd77bf5aa758df5211e5 /depo/hikuj-zupip
parentea1b81977d6c4d60e6c0764477a11dcb232c7b9d (diff)
reorganize some depo nix files
Diffstat (limited to 'depo/hikuj-zupip')
-rw-r--r--depo/hikuj-zupip/configuration.nix47
1 files changed, 16 insertions, 31 deletions
diff --git a/depo/hikuj-zupip/configuration.nix b/depo/hikuj-zupip/configuration.nix
index 9de29aa..b313a36 100644
--- a/depo/hikuj-zupip/configuration.nix
+++ b/depo/hikuj-zupip/configuration.nix
@@ -1,7 +1,6 @@
{ config, lib, pkgs, ... }:
{
-
networking = {
hostName = "lithium";
hosts = {
@@ -23,6 +22,21 @@
};
+ # Use the systemd-boot EFI boot loader.
+ boot.loader.systemd-boot.enable = true;
+ boot.loader.efi.canTouchEfiVariables = true;
+ boot.enableContainers = true;
+
+ boot.initrd.luks.devices = [
+ {
+ name = "root";
+ device = "/dev/disk/by-uuid/a0160f25-e0e3-4af0-8236-3e298eac957a";
+ preLVM = true;
+ }
+ ];
+
+ powerManagement.enable = false;
+
time.timeZone = "America/Los_Angeles";
fonts.fonts = with pkgs; [
@@ -77,9 +91,7 @@
};
# https://github.com/NixOS/nixpkgs/issues/53985
- systemd.services.gitlab-runner.path = [
- "/run/wrappers"
- ];
+ systemd.services.gitlab-runner.path = ["/run/wrappers"];
services = {
pcscd.enable = true;
@@ -110,24 +122,11 @@
printing.enable = true;
- tarsnap = {
- enable = false;
- archives = {
- ben-home = {
- directories = [
- ];
- };
- };
- };
-
xserver = {
enable = true;
layout = "us";
-
xkbOptions = "caps:ctrl_modifier";
-
displayManager.sddm.enable = true;
-
desktopManager = {
kodi.enable = true;
plasma5.enable = true;
@@ -189,20 +188,6 @@
};
};
- # Use the systemd-boot EFI boot loader.
- boot.loader.systemd-boot.enable = true;
- boot.loader.efi.canTouchEfiVariables = true;
-
- boot.initrd.luks.devices = [
- {
- name = "root";
- device = "/dev/disk/by-uuid/a0160f25-e0e3-4af0-8236-3e298eac957a";
- preLVM = true;
- }
- ];
-
- powerManagement.enable = false;
-
nix = {
gc = {
automatic = true;