Change of substituters and little group of fixs
This commit is contained in:
@@ -45,4 +45,13 @@
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
nixConfig = {
|
||||||
|
extra-substituters = [
|
||||||
|
"https://cache.flox.dev"
|
||||||
|
];
|
||||||
|
extra-trusted-public-keys = [
|
||||||
|
"flox-cache-public-1:7F4OyH7ZCnFhcze3fJdfyXYLQw/aV7GEed86nQ7IsOs="
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,6 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
|
||||||
nixpkgs.config.allowUnfreePredicate =
|
nixpkgs.config.allowUnfreePredicate =
|
||||||
pkg:
|
pkg:
|
||||||
builtins.elem (nixpkgs.lib.getName pkg) [
|
builtins.elem (nixpkgs.lib.getName pkg) [
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ in
|
|||||||
|
|
||||||
virtualisation.docker = {
|
virtualisation.docker = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
daemon.settings.features.cdi = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -4,7 +4,10 @@
|
|||||||
users.users = {
|
users.users = {
|
||||||
alistreaza = {
|
alistreaza = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" ];
|
extraGroups = [
|
||||||
|
"wheel"
|
||||||
|
"docker"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -55,6 +55,7 @@ with lib.hm.gvariant;
|
|||||||
|
|
||||||
"org/gnome/shell/extensions/dash-to-panel" = {
|
"org/gnome/shell/extensions/dash-to-panel" = {
|
||||||
prefs-opened = true;
|
prefs-opened = true;
|
||||||
|
|
||||||
isolate-monitors = true;
|
isolate-monitors = true;
|
||||||
isolate-workspaces = true;
|
isolate-workspaces = true;
|
||||||
|
|
||||||
@@ -70,8 +71,11 @@ with lib.hm.gvariant;
|
|||||||
dot-position = "BOTTOM";
|
dot-position = "BOTTOM";
|
||||||
dot-style-focused = "METRO";
|
dot-style-focused = "METRO";
|
||||||
dot-style-unfocused = "DOTS";
|
dot-style-unfocused = "DOTS";
|
||||||
|
|
||||||
focus-highlight = true;
|
focus-highlight = true;
|
||||||
focus-highlight-dominant = true;
|
focus-highlight-dominant = true;
|
||||||
|
|
||||||
|
hide-overview-on-startup = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
"org/gnome/shell/extensions/paperwm" = {
|
"org/gnome/shell/extensions/paperwm" = {
|
||||||
@@ -84,6 +88,25 @@ with lib.hm.gvariant;
|
|||||||
position-in-panel = 1;
|
position-in-panel = 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"org/gnome/shell/extensions/paperwm/workspaces" = {
|
||||||
|
list = [
|
||||||
|
"personal"
|
||||||
|
"university"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
"org/gnome/shell/extensions/paperwm/workspaces/personal" = {
|
||||||
|
name = "Personel";
|
||||||
|
index = 0;
|
||||||
|
background = "file://" + ./wallpapers/mocha.svg;
|
||||||
|
};
|
||||||
|
|
||||||
|
"org/gnome/shell/extensions/paperwm/workspaces/university" = {
|
||||||
|
name = "Université";
|
||||||
|
index = 1;
|
||||||
|
background = "file://" + ./wallpapers/frappe.svg;
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user