project-wide: Cleanup and services + private overhaul

This commit is contained in:
kat witch 2021-04-28 04:01:11 +01:00
parent 5f2309c773
commit f4b4ab2b28
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
36 changed files with 70 additions and 408 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, sources, ... }:
{ config, lib, pkgs, ... }:
{
imports = [ ./nixos ];

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, sources, ... }:
{ config, lib, pkgs, ... }:
{
security.sudo.wheelNeedsPassword = lib.mkForce false;

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, sources, ... }:
{ config, lib, pkgs, ... }:
{
imports = [

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, sources, ... }:
{ config, pkgs, ... }:
{
i18n.defaultLocale = "en_GB.UTF-8";

View file

@ -1,8 +1,6 @@
{ config, lib, pkgs, sources, ... }:
{ config, lib, pkgs, ... }:
{
#imports = [ (sources.home-manager + "/nixos") ];
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
services.journald.extraConfig = "SystemMaxUse=512M";
}

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, sources, superConfig, ... }:
{ config, lib, pkgs, superConfig, ... }:
let
commonSettings = {

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, sources, ... }:
{ config, lib, pkgs, ... }:
{
home.sessionVariables = {

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, witch, ... }:
{ config, lib, pkgs, ... }:
{
programs.mpv = {
@ -38,10 +38,7 @@
enable = false;
username = "kat";
defaultRoom = "lounge";
server = {
host = "sync.kittywit.ch";
password = witch.secrets.hosts.athame.syncplay.password;
};
server = { host = "sync.kittywit.ch"; };
# gui = false;
config = {
client_settings = {

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, witch, ... }:
{ config, lib, pkgs, ... }:
{
programs.ncmpcpp = {
@ -51,7 +51,7 @@
};
programs.beets = {
enable = true;
package = pkgs.unstable.beets;
package = pkgs.beets;
settings = {
directory = "~/media-share/music";
library = "~/.local/share/beets.db";

View file

@ -20,7 +20,7 @@
'')
(lib.mkAfter "/matrix connect kat")
];
packageUnwrapped = pkgs.unstable.weechat-unwrapped;
packageUnwrapped = pkgs.weechat-unwrapped;
homeDirectory = "${config.xdg.dataHome}/weechat";
plugins.python = {
enable = true;
@ -36,9 +36,11 @@
vimode-git
weechat-matrix
weechat-notify-send
weechat-title
title
];
config = {
logger.level.irc = 0;
logger.level.matrix = 0;
weechat = {
look = { mouse = true; };
bar = {

View file

@ -1,4 +1,4 @@
{ config, pkgs, lib, witch, ... }:
{ config, pkgs, ... }:
{
xdg = {

View file

@ -4,9 +4,9 @@
home.packages = with pkgs; [
git-crypt
gitAndTools.gitRemoteGcrypt
unstable.gitAndTools.gitAnnex
gitAndTools.gitAnnex
git-revise
arc.pkgs.gitAndTools.git-annex-remote-b2
gitAndTools.git-annex-remote-b2
];
programs.git = {

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, witch, ... }:
{ config, lib, pkgs, ... }:
{
home.sessionVariables.EDITOR = "vim";

View file

@ -1,4 +1,4 @@
{ config, pkgs, sources, ... }:
{ config, pkgs, ... }:
{
imports = [ ./waybar ./mako.nix ./sway.nix ./swayidle.nix ./gammastep.nix ];

View file

@ -1,4 +1,4 @@
{ config, pkgs, sources, ... }:
{ config, pkgs, ... }:
{
imports = [ ./sway.nix ];

View file

@ -1,4 +1,4 @@
{ config, pkgs, lib, sources, ... }:
{ config, pkgs, lib, ... }:
{
programs.sway = {