fix(home)!: reogranize
This commit is contained in:
parent
48927ca38a
commit
76ae1ed41b
|
@ -4,5 +4,6 @@
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
poezio
|
poezio
|
||||||
|
iamb
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{pkgs, ...}:
|
{pkgs, ...}:
|
||||||
{
|
{
|
||||||
imports = [./default.nix];
|
imports = [../default.nix];
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
NIXOS_OZONE_WL = "1";
|
NIXOS_OZONE_WL = "1";
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
tootle # mastodon
|
tootle # mastodon
|
||||||
# fractal # matrix
|
# fractal # matrix
|
||||||
fractal-next
|
fractal-next
|
||||||
fluffychat
|
# fluffychat
|
||||||
cozy # audiobooks
|
cozy # audiobooks
|
||||||
];
|
];
|
||||||
gtk = {
|
gtk = {
|
|
@ -1,6 +1,6 @@
|
||||||
{ config, pkgs, lib, ...}:
|
{ config, pkgs, lib, ...}:
|
||||||
{
|
{
|
||||||
imports = [./desktop.nix];
|
imports = [./default.nix];
|
||||||
|
|
||||||
dconf.settings = {
|
dconf.settings = {
|
||||||
"com/gexperts/Tilix" = {
|
"com/gexperts/Tilix" = {
|
|
@ -7,7 +7,7 @@ let
|
||||||
lock = "${pkgs.swaylock-effects}/bin/swaylock -SeFfk --clock --effect-blur 7x5 --effect-vignette 0.5:0.5 --grace 10 --fade-in 0.2 --submit-on-touch";
|
lock = "${pkgs.swaylock-effects}/bin/swaylock -SeFfk --clock --effect-blur 7x5 --effect-vignette 0.5:0.5 --grace 10 --fade-in 0.2 --submit-on-touch";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [./desktop.nix];
|
imports = [./default.nix];
|
||||||
|
|
||||||
options.my.sway = with pkgs.lib; {
|
options.my.sway = with pkgs.lib; {
|
||||||
KDEConnect = mkOption {
|
KDEConnect = mkOption {
|
|
@ -0,0 +1,33 @@
|
||||||
|
{pkgs, ...}:
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
buildah
|
||||||
|
podman
|
||||||
|
podman-tui
|
||||||
|
podman-compose
|
||||||
|
];
|
||||||
|
|
||||||
|
xdg.configFile."containers/registries.conf".text = ''
|
||||||
|
[registries.search]
|
||||||
|
registries = ['docker.io']
|
||||||
|
|
||||||
|
[registries.block]
|
||||||
|
registries = []
|
||||||
|
'';
|
||||||
|
xdg.configFile."containers/policy.json".text = ''
|
||||||
|
{
|
||||||
|
"default": [
|
||||||
|
{
|
||||||
|
"type": "insecureAcceptAnything"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"transports":
|
||||||
|
{
|
||||||
|
"docker-daemon":
|
||||||
|
{
|
||||||
|
"": [{"type":"insecureAcceptAnything"}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
}
|
Loading…
Reference in New Issue