1
0
mirror of https://github.com/kmein/niveum synced 2026-03-28 23:31:07 +01:00

3 Commits

4 changed files with 28 additions and 17 deletions

View File

@@ -1,9 +1,9 @@
{ {
"url": "https://github.com/NixOS/nixpkgs.git", "url": "https://github.com/NixOS/nixpkgs.git",
"rev": "02fa062f99bb7c2b8e02708adf854c82a4db7a96", "rev": "c7e905b6a971dad2c26a31960053176c770a812a",
"date": "2021-04-09T00:31:35+02:00", "date": "2021-04-16T10:31:17+02:00",
"path": "/nix/store/ndxlk2cpkq2dq1mgf63a6j8bss3dh65w-nixpkgs", "path": "/nix/store/pwbxr08bwx5jn295gkxnziik1y982c6i-nixpkgs",
"sha256": "1j8qj2jab7rip33byc18z8hdyqzry3py38j5wmxdpgg0lksw75v8", "sha256": "1h0npga8nlbmv2fnirmv8v5xs8xd3k7hn803lxjn09hyqdcxx23n",
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,
"leaveDotGit": false "leaveDotGit": false

View File

@@ -1,9 +1,9 @@
{ {
"url": "https://github.com/krebs/retiolum", "url": "https://github.com/krebs/retiolum",
"rev": "be946126421be43111b388872258fc875da928ef", "rev": "0d3f175804d51f7fad891b04a6f742ebb1c1c923",
"date": "2021-03-28T18:02:14+02:00", "date": "2021-04-16T23:02:19+02:00",
"path": "/nix/store/ff1blb0hhnz2ah9la4hx24167mmgvlxd-retiolum", "path": "/nix/store/489x2j1adwg3yhwadygxha7j00w67jzh-retiolum",
"sha256": "0qa1zz9jksy8a392k96rm69288dz9j3zw7vw71rycmhwhvp9dhgz", "sha256": "1fxp397ndjl7qbzkh2dgipjfjj3sjbsd8bqd0p8sm3a9jgfgp7nn",
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,
"leaveDotGit": false "leaveDotGit": false

View File

@@ -51,8 +51,8 @@ in
"todoman/todoman.conf".text = '' "todoman/todoman.conf".text = ''
[main] [main]
path = ${davHome}/calendar/* path = ${davHome}/calendar/*
date_format = %F date_format = %Y-%m-%d
time_format = %R time_format = %H:%M
default_due = 0 default_due = 0
default_list = Personal default_list = Personal
startable = True startable = True
@@ -70,11 +70,11 @@ in
timedelta = 5d timedelta = 5d
[locale] [locale]
timeformat = %R timeformat = %H:%M
dateformat = %F dateformat = %Y-%m-%d
longdateformat = %F longdateformat = %Y-%m-%d
datetimeformat = %F %R datetimeformat = %Y-%m-%d %H:%M
longdatetimeformat = %F %R longdatetimeformat = %Y-%m-%d %H:%M
local_timezone = ${config.time.timeZone} local_timezone = ${config.time.timeZone}
default_timezone = ${config.time.timeZone} default_timezone = ${config.time.timeZone}
weeknumbers = left weeknumbers = left

View File

@@ -12,13 +12,24 @@
programs.steam.enable = true; programs.steam.enable = true;
nixpkgs.config.steam.java = true; nixpkgs.config.steam.java = true;
} }
{
services.xserver.displayManager.sessionCommands =
let
intern = "LVDS-1";
extern = "HDMI-1";
pulseaudioCard = "alsa_card.pci-0000_00_1b.0";
pulseaudioProfile = "output:hdmi-stereo+input:analog-stereo";
in toString (pkgs.writers.writeDash "hdmi-on" ''
${pkgs.xorg.xrandr}/bin/xrandr --output ${intern} --primary --auto --output ${extern} --above ${intern} --auto
${pkgs.pulseaudio}/bin/pactl set-card-profile ${pulseaudioCard} ${pulseaudioProfile}
'');
}
]; ];
niveum = { niveum = {
batteryName = "BAT0"; batteryName = "BAT0";
wirelessInterface = "wlp3s0"; wirelessInterface = "wlp3s0";
promptColours.success = "cyan"; promptColours.success = "green";
}; };
networking.useDHCP = false; networking.useDHCP = false;