mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-18 06:59:57 -05:00
Containers and styling
This commit is contained in:
@@ -23,6 +23,7 @@
|
|||||||
#network,
|
#network,
|
||||||
#bluetooth,
|
#bluetooth,
|
||||||
#wireplumber,
|
#wireplumber,
|
||||||
|
#tray widget,
|
||||||
#clock {
|
#clock {
|
||||||
min-width: 12px;
|
min-width: 12px;
|
||||||
margin-right: 13px;
|
margin-right: 13px;
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ in
|
|||||||
# Use XCompose file
|
# Use XCompose file
|
||||||
"XCOMPOSEFILE,~/.XCompose"
|
"XCOMPOSEFILE,~/.XCompose"
|
||||||
"EDITOR,nvim"
|
"EDITOR,nvim"
|
||||||
"DOCKER_HOST,unix://$XDG_RUNTIME_DIR/podman/podman.sock"
|
# "DOCKER_HOST,unix://$XDG_RUNTIME_DIR/podman/podman.sock"
|
||||||
];
|
];
|
||||||
|
|
||||||
xwayland = {
|
xwayland = {
|
||||||
|
|||||||
@@ -27,12 +27,14 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
decoration = {
|
decoration = {
|
||||||
rounding = 0;
|
rounding = 4;
|
||||||
|
|
||||||
shadow = {
|
shadow = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
range = 2;
|
range = 14;
|
||||||
render_power = 3;
|
render_power = 3;
|
||||||
|
ignore_window = true;
|
||||||
|
color = "rgba(00000045)";
|
||||||
# color = hexToRgba config.colorScheme.palette.base00 "ee";
|
# color = hexToRgba config.colorScheme.palette.base00 "ee";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -34,6 +34,7 @@
|
|||||||
];
|
];
|
||||||
modules-right = [
|
modules-right = [
|
||||||
# "custom/dropbox"
|
# "custom/dropbox"
|
||||||
|
"tray"
|
||||||
"bluetooth"
|
"bluetooth"
|
||||||
"network"
|
"network"
|
||||||
"wireplumber"
|
"wireplumber"
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{pkgs, ...}: {
|
||||||
|
virtualisation.containers.enable = true;
|
||||||
|
virtualisation = {
|
||||||
|
docker.enable = true;
|
||||||
|
# podman = {
|
||||||
|
# enable = true;
|
||||||
|
# dockerCompat = true;
|
||||||
|
# dockerSocket.enable = true;
|
||||||
|
# defaultNetwork.settings.dns_enabled = true;
|
||||||
|
# };
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -10,6 +10,6 @@ in {
|
|||||||
(import ./hyprland.nix inputs)
|
(import ./hyprland.nix inputs)
|
||||||
(import ./system.nix)
|
(import ./system.nix)
|
||||||
(import ./1password.nix)
|
(import ./1password.nix)
|
||||||
(import ./podman.nix)
|
(import ./containers.nix)
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
{pkgs, ...}: {
|
|
||||||
virtualisation.containers.enable = true;
|
|
||||||
virtualisation = {
|
|
||||||
podman = {
|
|
||||||
enable = true;
|
|
||||||
dockerCompat = true;
|
|
||||||
dockerSocket.enable = true;
|
|
||||||
defaultNetwork.settings.dns_enabled = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -23,6 +23,7 @@ in {
|
|||||||
|
|
||||||
# Install packages
|
# Install packages
|
||||||
environment.systemPackages = packages.systemPackages;
|
environment.systemPackages = packages.systemPackages;
|
||||||
|
programs.direnv.enable = true;
|
||||||
|
|
||||||
# Networking
|
# Networking
|
||||||
services.resolved.enable = true;
|
services.resolved.enable = true;
|
||||||
|
|||||||
@@ -64,7 +64,7 @@
|
|||||||
|
|
||||||
# Containers
|
# Containers
|
||||||
docker-compose
|
docker-compose
|
||||||
podman-compose
|
# podman-compose
|
||||||
];
|
];
|
||||||
|
|
||||||
homePackages = with pkgs; [
|
homePackages = with pkgs; [
|
||||||
|
|||||||
Reference in New Issue
Block a user