mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-25 16:08:30 +02:00
don't use latest kernels
This commit is contained in:
parent
505d713001
commit
0a8ef57823
6 changed files with 23 additions and 23 deletions
|
@ -58,6 +58,10 @@ in
|
|||
match = "Host ifsr.de User git";
|
||||
identityFile = git;
|
||||
};
|
||||
"git@staging.ifsr.de" = {
|
||||
match = "Host staging.ifsr.de User git";
|
||||
identityFile = git;
|
||||
};
|
||||
};
|
||||
extraConfig = ''
|
||||
IdentityFile ~/.ssh/id_ed25519
|
||||
|
|
|
@ -61,8 +61,6 @@ in
|
|||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
xdg.configFile."shikane/config.toml".source =
|
||||
tomlFormat.generate "shikane-config" cfg.settings;
|
||||
systemd.user.services.shikane = {
|
||||
Unit = {
|
||||
Description = "Dynamic output configuration tool";
|
||||
|
@ -71,7 +69,7 @@ in
|
|||
PartOf = [ "graphical-session.target" ];
|
||||
};
|
||||
|
||||
Service = { ExecStart = "${cfg.package}/bin/shikane"; };
|
||||
Service = { ExecStart = "${cfg.package}/bin/shikane -c ${tomlFormat.generate "shikane-config.toml" cfg.settings}"; };
|
||||
|
||||
Install = { WantedBy = [ "graphical-session.target" ]; };
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue