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

View file

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