added docker and libreoffice
This commit is contained in:
@@ -12,6 +12,7 @@
|
|||||||
./xgd.nix
|
./xgd.nix
|
||||||
./hyprland.nix
|
./hyprland.nix
|
||||||
./rofi.nix
|
./rofi.nix
|
||||||
|
./libreoffice.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.username = "lukas";
|
home.username = "lukas";
|
||||||
|
|||||||
@@ -13,6 +13,8 @@ in {
|
|||||||
gpg.format = "ssh";
|
gpg.format = "ssh";
|
||||||
gpg.ssh.allowedSignersFile = "~/.ssh/allowed_signers";
|
gpg.ssh.allowedSignersFile = "~/.ssh/allowed_signers";
|
||||||
user.signingkey = "~/.ssh/id_ed25519.pub";
|
user.signingkey = "~/.ssh/id_ed25519.pub";
|
||||||
|
pull.rebase = false;
|
||||||
|
init.defaultBranch = "master";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
13
home/lukas/libreoffice.nix
Normal file
13
home/lukas/libreoffice.nix
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
libreoffice = pkgs.libreoffice;
|
||||||
|
in {
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
libreoffice
|
||||||
|
hunspell
|
||||||
|
hunspellDicts.en_US
|
||||||
|
hunspellDicts.de_DE
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -1,6 +1,3 @@
|
|||||||
{
|
{
|
||||||
virtualisation.docker = {
|
virtualisation.docker.enable = true;
|
||||||
enable = true;
|
|
||||||
rootless = true;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user