Skip to content

Commit 798d7f7

Browse files
committed
base: install systemd-impersonate by default
1 parent 4c06391 commit 798d7f7

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed

config/nixos/system/base.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
cyme
3434
rdap
3535
jq
36+
systemd-impersonate
3637
]
3738
++ lib.optionals (!(lib.versionOlder "25.05" lib.trivial.release)) (with pkgs; [ wcurl ]);
3839
programs.trippy.enable = true;

flake.lock

Lines changed: 41 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@
5757
url = "github:zhaofengli/colmena";
5858
inputs.nixpkgs.follows = "nixpkgs-unstable";
5959
};
60+
61+
systemd-impersonate = {
62+
url = "https://codeberg.org/marie/systemd-impersonate/archive/main.tar.gz";
63+
inputs.nixpkgs.follows = "nixpkgs-unstable";
64+
};
6065
};
6166

6267
outputs =
@@ -68,6 +73,7 @@
6873
nixvim,
6974
self,
7075
colmena,
76+
systemd-impersonate,
7177
...
7278
}:
7379
let
@@ -85,6 +91,7 @@
8591
inherit system;
8692
overlays = [
8793
self.overlays.default
94+
systemd-impersonate.overlays.default
8895
];
8996
}
9097
)
@@ -178,6 +185,7 @@
178185
inherit system;
179186
overlays = [
180187
self.overlays.default
188+
systemd-impersonate.overlays.default
181189
];
182190
};
183191
patchedInputs = patchInputs {

0 commit comments

Comments
 (0)