format all

This commit is contained in:
Callum Leslie 2026-04-22 21:28:19 +01:00
parent 091cfbdf96
commit bcf0553529
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90
40 changed files with 271 additions and 140 deletions

View file

@ -1,8 +1,11 @@
{...}: {
{ ... }:
{
programs.alacritty = {
enable = true;
settings = {
env = {TERM = "xterm-256color";};
env = {
TERM = "xterm-256color";
};
};
};
}

View file

@ -1,4 +1,5 @@
{...}: {
{ ... }:
{
imports = [
./hypr
./waybar

View file

@ -1,4 +1,5 @@
{...}: {
{ ... }:
{
programs.direnv = {
enable = true;
nix-direnv.enable = true;

View file

@ -1,4 +1,5 @@
{inputs, ...}: {
{ inputs, ... }:
{
programs.firefox = {
enable = true;
policies = {
@ -37,9 +38,9 @@
];
};
containers = {};
containers = { };
settings = {};
settings = { };
userChrome = "";

View file

@ -1,4 +1,5 @@
{...}: {
{ ... }:
{
programs = {
git = {
enable = true;
@ -8,7 +9,7 @@
signing.key = "03B01F427831BCFD!";
signing.signByDefault = true;
ignores = [".direnv/"];
ignores = [ ".direnv/" ];
includes = [
{
@ -18,7 +19,9 @@
email = "psycl6@nottingham.ac.uk";
signingKey = "14861F1282EFB5C8!";
};
credential = {helper = "store";};
credential = {
helper = "store";
};
};
}
];
@ -29,10 +32,16 @@
autocrlf = false;
};
init = {defaultBranch = "main";};
init = {
defaultBranch = "main";
};
push = {autoSetupRemote = true;};
ghq = {root = "~/repos";};
push = {
autoSetupRemote = true;
};
ghq = {
root = "~/repos";
};
};
};
delta.enable = true;

View file

@ -1,4 +1,5 @@
{...}: {
{ ... }:
{
programs.jujutsu = {
enable = true;
settings = {
@ -21,13 +22,13 @@
"--scope" = [
{
"--when".repositories = ["~/repos/projects.cs.nott.ac.uk"];
"--when".repositories = [ "~/repos/projects.cs.nott.ac.uk" ];
user = {
email = "psycl6@nottingham.ac.uk";
};
}
{
"--when".commands = ["status"];
"--when".commands = [ "status" ];
ui.paginate = "never";
}
];

View file

@ -1,4 +1,5 @@
{pkgs, ...}: {
{ pkgs, ... }:
{
programs.rbw = {
enable = true;
settings = {

View file

@ -1,4 +1,5 @@
{pkgs, ...}: {
{ pkgs, ... }:
{
programs.rofi = {
enable = true;
package = pkgs.rofi;