1
0
mirror of https://github.com/kmein/niveum synced 2026-03-21 12:21:08 +01:00

chore: format

This commit is contained in:
2024-02-27 20:59:54 +01:00
parent 61b78cfc73
commit f263d5d175
2 changed files with 19 additions and 14 deletions

View File

@@ -155,9 +155,10 @@
maakaron = let maakaron = let
system = "x86_64-darwin"; system = "x86_64-darwin";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
in home-manager.lib.homeManagerConfiguration { in
home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
modules = [ ./systems/maakaron/home.nix ]; modules = [./systems/maakaron/home.nix];
extraSpecialArgs = { extraSpecialArgs = {
inherit inputs; inherit inputs;
niveumPackages = inputs.self.packages.${system}; niveumPackages = inputs.self.packages.${system};

View File

@@ -1,9 +1,13 @@
{ config, pkgs, inputs, niveumPackages, ... }: {
let config,
pkgs,
inputs,
niveumPackages,
...
}: let
nextcloud = "${config.home.homeDirectory}/Nextcloud/ZODIAC"; nextcloud = "${config.home.homeDirectory}/Nextcloud/ZODIAC";
timeLedger = "${nextcloud}/hora.timeclock"; timeLedger = "${nextcloud}/hora.timeclock";
in in {
{
home.packages = [ home.packages = [
pkgs.git pkgs.git
(pkgs.writers.writeDashBin "hora" '' (pkgs.writers.writeDashBin "hora" ''
@@ -18,7 +22,7 @@ in
home.sessionVariables.EDITOR = "${niveumPackages.vim}/bin/nvim"; home.sessionVariables.EDITOR = "${niveumPackages.vim}/bin/nvim";
home.file."Local Applications".source = pkgs.symlinkJoin { home.file."Local Applications".source = pkgs.symlinkJoin {
name = "local-applications"; name = "local-applications";
paths = [ pkgs.anki-bin pkgs.dbeaver pkgs.vscode pkgs.mpv ]; paths = [pkgs.anki-bin pkgs.dbeaver pkgs.vscode pkgs.mpv];
}; };
home.stateVersion = "23.11"; home.stateVersion = "23.11";
home.username = "xm7234fu"; home.username = "xm7234fu";