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
|
.envrc
|
||||||
./shell.nix
|
./shell.nix
|
||||||
Makefile
|
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
|
HOMEMANAGER_CONFIG_DIR := $(CONFIG_DIR)/home-manager
|
||||||
SUBMODULES := $(CONFIG_DIR)/nvim $(CONFIG_DIR)/hypr $(CONFIG_DIR)/waybar
|
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)
|
default: $(SUBMODULES)
|
||||||
command -v nix > /dev/null || exit 1
|
command -v nix > /dev/null || exit 1
|
||||||
|
|
|
@ -13,6 +13,8 @@
|
||||||
# Enable power-profiles
|
# Enable power-profiles
|
||||||
services.power-profiles-daemon.enable = true;
|
services.power-profiles-daemon.enable = true;
|
||||||
|
|
||||||
|
services.flatpak.enable = true;
|
||||||
|
virtualisation.podman.enable = true;
|
||||||
programs.nix-ld = {
|
programs.nix-ld = {
|
||||||
enable = true;
|
enable = true;
|
||||||
libraries = with pkgs; [
|
libraries = with pkgs; [
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
distrobox
|
||||||
libreoffice-fresh
|
libreoffice-fresh
|
||||||
otpclient
|
otpclient
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue