Add distrobox and podman, don't sync submodules to /etc/nixos/config
This commit is contained in:
parent
3335058680
commit
fba214d3e3
|
@ -4,3 +4,6 @@
|
|||
.envrc
|
||||
./shell.nix
|
||||
Makefile
|
||||
nvim/
|
||||
hypr/
|
||||
waybar/
|
||||
|
|
2
Makefile
2
Makefile
|
@ -4,7 +4,7 @@ CONFIG_DIR := $(if $(XDG_CONFIG_HOME), $(XDG_CONFIG_HOME), $(HOME)/.config)
|
|||
HOMEMANAGER_CONFIG_DIR := $(CONFIG_DIR)/home-manager
|
||||
SUBMODULES := $(CONFIG_DIR)/nvim $(CONFIG_DIR)/hypr $(CONFIG_DIR)/waybar
|
||||
|
||||
.PHONY: default clean nixos home
|
||||
.PHONY: default clean nixos home /etc/nixos/config
|
||||
|
||||
default: $(SUBMODULES)
|
||||
command -v nix > /dev/null || exit 1
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
# Enable power-profiles
|
||||
services.power-profiles-daemon.enable = true;
|
||||
|
||||
services.flatpak.enable = true;
|
||||
virtualisation.podman.enable = true;
|
||||
programs.nix-ld = {
|
||||
enable = true;
|
||||
libraries = with pkgs; [
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
distrobox
|
||||
libreoffice-fresh
|
||||
otpclient
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue