mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
chore: update flake
This commit is contained in:
parent
9577cdf243
commit
3957e1a4a7
7 changed files with 1861 additions and 150 deletions
|
|
@ -3415,7 +3415,7 @@ This is the "reference implementation" of a setup that runs without NixOS, only
|
||||||
imports = [
|
imports = [
|
||||||
inputs.stylix.homeManagerModules.stylix
|
inputs.stylix.homeManagerModules.stylix
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
inputs.nix-index-database.hmModules.nix-index
|
inputs.nix-index-database.homeModules.nix-index
|
||||||
"${self}/modules/home"
|
"${self}/modules/home"
|
||||||
"${self}/modules/nixos/common/pii.nix"
|
"${self}/modules/nixos/common/pii.nix"
|
||||||
"${self}/modules/nixos/common/meta.nix"
|
"${self}/modules/nixos/common/meta.nix"
|
||||||
|
|
@ -4104,7 +4104,7 @@ We enable the use of =home-manager= as a NixoS module. A nice trick here is the
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
verbose = true;
|
verbose = true;
|
||||||
users.${config.swarselsystems.mainUser}.imports = [
|
users.${config.swarselsystems.mainUser}.imports = [
|
||||||
inputs.nix-index-database.hmModules.nix-index
|
inputs.nix-index-database.homeModules.nix-index
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
# inputs.stylix.homeModules.stylix
|
# inputs.stylix.homeModules.stylix
|
||||||
{
|
{
|
||||||
|
|
@ -4684,10 +4684,10 @@ There is a persistent bug over Linux kernels that makes the user wait 1m30s on s
|
||||||
options.swarselmodules.systemdTimeout = lib.mkEnableOption "systemd timeout config";
|
options.swarselmodules.systemdTimeout = lib.mkEnableOption "systemd timeout config";
|
||||||
config = lib.mkIf config.swarselmodules.systemdTimeout {
|
config = lib.mkIf config.swarselmodules.systemdTimeout {
|
||||||
# systemd
|
# systemd
|
||||||
systemd.extraConfig = ''
|
systemd.settings.Manager = {
|
||||||
DefaultTimeoutStartSec=60s
|
DefaultTimeoutStartSec = "60s";
|
||||||
DefaultTimeoutStopSec=15s
|
DefaultTimeoutStopSec = "15s";
|
||||||
'';
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
@ -5589,7 +5589,7 @@ This section houses the greetd related settings. I do not really want to use a d
|
||||||
settings = {
|
settings = {
|
||||||
initial_session.command = "sway";
|
initial_session.command = "sway";
|
||||||
default_session.command = ''
|
default_session.command = ''
|
||||||
${pkgs.greetd.tuigreet}/bin/tuigreet \
|
${pkgs.tuigreet}/bin/tuigreet \
|
||||||
--time \
|
--time \
|
||||||
--asterisks \
|
--asterisks \
|
||||||
--user-menu \
|
--user-menu \
|
||||||
|
|
@ -5701,7 +5701,7 @@ When a program does not work, start with =nix-ldd <program>=. This will tell you
|
||||||
pixman
|
pixman
|
||||||
speex
|
speex
|
||||||
stdenv.cc.cc
|
stdenv.cc.cc
|
||||||
steam-fhsenv-without-steam
|
stable.steam-fhsenv-without-steam
|
||||||
systemd
|
systemd
|
||||||
tbb
|
tbb
|
||||||
vulkan-loader
|
vulkan-loader
|
||||||
|
|
|
||||||
1979
flake.lock
generated
1979
flake.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -4,7 +4,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
inputs.stylix.homeManagerModules.stylix
|
inputs.stylix.homeManagerModules.stylix
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
inputs.nix-index-database.hmModules.nix-index
|
inputs.nix-index-database.homeModules.nix-index
|
||||||
"${self}/modules/home"
|
"${self}/modules/home"
|
||||||
"${self}/modules/nixos/common/pii.nix"
|
"${self}/modules/nixos/common/pii.nix"
|
||||||
"${self}/modules/nixos/common/meta.nix"
|
"${self}/modules/nixos/common/meta.nix"
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
settings = {
|
settings = {
|
||||||
initial_session.command = "sway";
|
initial_session.command = "sway";
|
||||||
default_session.command = ''
|
default_session.command = ''
|
||||||
${pkgs.greetd.tuigreet}/bin/tuigreet \
|
${pkgs.tuigreet}/bin/tuigreet \
|
||||||
--time \
|
--time \
|
||||||
--asterisks \
|
--asterisks \
|
||||||
--user-menu \
|
--user-menu \
|
||||||
|
|
|
||||||
|
|
@ -82,7 +82,7 @@
|
||||||
pixman
|
pixman
|
||||||
speex
|
speex
|
||||||
stdenv.cc.cc
|
stdenv.cc.cc
|
||||||
steam-fhsenv-without-steam
|
stable.steam-fhsenv-without-steam
|
||||||
systemd
|
systemd
|
||||||
tbb
|
tbb
|
||||||
vulkan-loader
|
vulkan-loader
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,9 @@
|
||||||
options.swarselmodules.systemdTimeout = lib.mkEnableOption "systemd timeout config";
|
options.swarselmodules.systemdTimeout = lib.mkEnableOption "systemd timeout config";
|
||||||
config = lib.mkIf config.swarselmodules.systemdTimeout {
|
config = lib.mkIf config.swarselmodules.systemdTimeout {
|
||||||
# systemd
|
# systemd
|
||||||
systemd.extraConfig = ''
|
systemd.settings.Manager = {
|
||||||
DefaultTimeoutStartSec=60s
|
DefaultTimeoutStartSec = "60s";
|
||||||
DefaultTimeoutStopSec=15s
|
DefaultTimeoutStopSec = "15s";
|
||||||
'';
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
verbose = true;
|
verbose = true;
|
||||||
users.${config.swarselsystems.mainUser}.imports = [
|
users.${config.swarselsystems.mainUser}.imports = [
|
||||||
inputs.nix-index-database.hmModules.nix-index
|
inputs.nix-index-database.homeModules.nix-index
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
# inputs.stylix.homeModules.stylix
|
# inputs.stylix.homeModules.stylix
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue