nix: Reformat

This commit is contained in:
Geoffrey Frogeye 2023-11-05 21:32:31 +01:00
parent 832ce41b8e
commit dff024a291
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
2 changed files with 409 additions and 402 deletions

View file

@ -1,6 +1,5 @@
{ pkgs, config, ... }:
{
home.stateVersion = "23.05";
programs = {
home-manager.enable = true;
@ -53,8 +52,9 @@
fzf.enable = true;
# TODO highlight or bat
};
home.packages = with pkgs; [
home = {
stateVersion = "23.05";
packages = with pkgs; [
# dotfiles dependencies
coreutils
bash
@ -132,4 +132,5 @@
syncthing
];
};
}

View file

@ -1,6 +1,8 @@
{ pkgs, config, lib, ... }:
{
xsession.windowManager.i3 = {
xsession = {
windowManager = {
i3 = {
enable = true;
config =
let
@ -320,7 +322,9 @@
forEachWorkspace ({ w, workspace }: { output = builtins.elemAt x11_screens (lib.mod w (builtins.length x11_screens)); workspace = workspace.name; });
};
};
xsession.numlock.enable = true; # FIXME Only on computers with a separate one
};
numlock.enable = true; # FIXME Only on computers with a separate one
};
programs = {
# Browser
@ -432,7 +436,8 @@
autorandr.enable = true;
};
home.packages = with pkgs; [
home = {
packages = with pkgs; [
# remote
tigervnc
@ -482,5 +487,6 @@
pass
thunderbird
];
};
}