File tree 2 files changed +10
-7
lines changed
2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
1
{ pkgs , ... } :
2
2
{
3
3
config = {
4
+ nixpkgs . config . packageOverrides =
5
+ {
6
+ inherit ( ( builtins . getFlake "github:wegank/nixpkgs/7b6b730345cc762e8658543254aabc57ca2af04a" ) . legacyPackages . ${ pkgs . system } ) libvirt virt-manager ;
7
+ } ;
8
+
4
9
environment . systemPackages = with pkgs ; [
5
10
qemu
6
11
libvirt
Original file line number Diff line number Diff line change 1
- { pkgs , inputs , ... } :
2
- let
3
- stablePkgs = import inputs . nixos-stable { inherit ( pkgs ) system ; } ;
4
- in
1
+ { pkgs , ... } :
5
2
{
6
3
imports = [
7
4
./fish.nix
8
5
./git.nix
9
6
] ;
10
7
11
8
home . packages =
12
- ( with pkgs ; [
9
+ with pkgs ; [
13
10
nushell
14
11
ripgrep
15
12
fd
21
18
cachix
22
19
nix-output-monitor
23
20
gh
24
- ] )
25
- ++ [ stablePkgs . httpie ] ;
21
+ httpie
22
+ ] ;
23
+
26
24
27
25
home . sessionVariables = {
28
26
PAGER = "less" ;
You can’t perform that action at this time.
0 commit comments