This commit is contained in:
insects 2024-08-23 13:48:51 +02:00
parent 2f08749525
commit 20278baff4
4 changed files with 6 additions and 11 deletions

View file

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

View file

@ -7,6 +7,7 @@
./vscode.nix
./1password.nix
./obs.nix
./irc.nix
];
home.packages = with pkgs; [

View file

@ -5,15 +5,5 @@
];
programs.firefox = {
enable = true;
profiles = {
"user" = {
userChrome = ''
* {
font-family: "Fira Sans";
}
'';
};
};
};
}

View file

@ -0,0 +1,5 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
halloy
];
}