1
0
mirror of https://github.com/kmein/niveum synced 2026-03-19 11:31:09 +01:00

chore: upgrade to 19.09

This commit is contained in:
Kierán Meinhardt
2019-10-11 21:12:32 +02:00
parent 922b3cdabd
commit 36d51e5a60
10 changed files with 17 additions and 20 deletions

View File

@@ -35,7 +35,7 @@ in
<configs/mpv.nix> <configs/mpv.nix>
<configs/nano.nix> <configs/nano.nix>
<configs/neovim.nix> <configs/neovim.nix>
<configs/newsboat.nix> # <configs/newsboat.nix> (broken)
<configs/nixpkgs-unstable.nix> <configs/nixpkgs-unstable.nix>
<configs/packages> <configs/packages>
<configs/printing.nix> <configs/printing.nix>
@@ -141,6 +141,10 @@ in
} }
{ {
time.timeZone = "Europe/Berlin"; time.timeZone = "Europe/Berlin";
location = {
latitude = 52.517;
longitude = 13.3872;
};
} }
{ {
home-manager.users.me = { home-manager.users.me = {

View File

@@ -18,7 +18,7 @@ let
}}" }}"
phase2="auth=PAP" phase2="auth=PAP"
''; '';
only-hu-traffic = true; only-hu-traffic = false;
in { in {
networking.wireless.networks = { networking.wireless.networks = {
eduroam_5GHz.auth = eduroamAuth; eduroam_5GHz.auth = eduroamAuth;

View File

@@ -29,14 +29,12 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
cabal2nix cabal2nix
stack2nix
cabal-install cabal-install
hlint hlint
# haskellPackages.brittany # haskellPackages.brittany
(haskellPackages.ghcWithHoogle (import ./packages.nix)) (haskellPackages.ghcWithHoogle (import ./packages.nix))
] ++ map haskell.lib.justStaticExecutables [ ] ++ map haskell.lib.justStaticExecutables [
haskellPackages.ghcid haskellPackages.ghcid
haskellPackages.hakyll
# haskellPackages.hfmt # haskellPackages.hfmt
haskellPackages.hasktags haskellPackages.hasktags
haskellPackages.hindent haskellPackages.hindent

View File

@@ -94,7 +94,6 @@ with haskellPackages; [
unix-time unix-time
unordered-containers unordered-containers
vector vector
vinyl
void void
vty vty
warp warp

View File

@@ -1,10 +1,10 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
(texlive.combine { # (texlive.combine {
inherit (pkgs.texlive) scheme-full texdoc latex2e-help-texinfo; # inherit (pkgs.texlive) scheme-full texdoc latex2e-help-texinfo;
pkgFilter = pkg: pkg.tlType == "run" || pkg.tlType == "bin" || pkg.pname == "latex2e-help-texinfo"; # pkgFilter = pkg: pkg.tlType == "run" || pkg.tlType == "bin" || pkg.pname == "latex2e-help-texinfo";
}) # })
# haskellPackages.patat # haskellPackages.patat
(aspellWithDicts (dict: [dict.de dict.en dict.la dict.en-computers dict.ru])) (aspellWithDicts (dict: [dict.de dict.en dict.la dict.en-computers dict.ru]))
haskellPackages.pandoc-citeproc haskellPackages.pandoc-citeproc

View File

@@ -1,7 +1,3 @@
{ {
services.redshift = { services.redshift.enable = true;
enable = true;
latitude = "52";
longitude = "13";
};
} }

View File

@@ -27,7 +27,7 @@ with config.niveum; {
}; };
qt = { qt = {
enable = true; enable = true;
useGtkTheme = true; platformTheme = "gtk";
}; };
xsession.pointerCursor = theme.cursor // { size = 16; }; xsession.pointerCursor = theme.cursor // { size = 16; };
}; };

View File

@@ -25,7 +25,7 @@ let
}; };
home-manager.git = { home-manager.git = {
url = https://github.com/rycee/home-manager; url = https://github.com/rycee/home-manager;
ref = "2ccbf43"; ref = "31e8494";
}; };
stockholm.git = { stockholm.git = {
url = https://cgit.krebsco.de/stockholm; url = https://cgit.krebsco.de/stockholm;

View File

@@ -1,7 +1,7 @@
{ {
"url": "https://github.com/NixOS/nixpkgs-channels", "url": "https://github.com/NixOS/nixpkgs-channels",
"rev": "5271f8dddc0f2e54f55bd2fc1868c09ff72ac980", "rev": "88bbb3c809699f44bf844094a2cd7874e0ea4a39",
"date": "2019-09-13T15:50:45+01:00", "date": "2019-10-09T11:39:27+02:00",
"sha256": "0w0x7whwb98lalaw25hxarmr924m1i49c1kacyypmnh2vjbkrjmi", "sha256": "0vqwws2hhsx1g4kdhm2sz9m71n0jvjvhgv9ia7fjz679s3341032",
"fetchSubmodules": false "fetchSubmodules": false
} }

View File

@@ -31,5 +31,5 @@
networking.hostName = "homeros"; networking.hostName = "homeros";
system.stateVersion = "19.03"; system.stateVersion = "19.09";
} }