File tree 5 files changed +37
-1
lines changed
5 files changed +37
-1
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ module-functions ,
3
+ hm ,
4
+ pkgs ,
5
+ ...
6
+ } :
7
+ module-functions . module "programs" "loupe" {
8
+ hm . home . packages = with pkgs ; [ loupe ] ;
9
+ }
Original file line number Diff line number Diff line change 5
5
...
6
6
} :
7
7
module-functions . module "programs" "nautilus" {
8
- hm . home . packages = with pkgs . gnome ; [ nautilus ] ;
8
+ hm . home . packages = with pkgs ; [ nautilus ] ;
9
9
}
Original file line number Diff line number Diff line change
1
+ {
2
+ module-functions ,
3
+ hm ,
4
+ pkgs ,
5
+ ...
6
+ } :
7
+ module-functions . module "programs" "totem" {
8
+ hm . home . packages = with pkgs ; [ totem ] ;
9
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ option-functions ,
3
+ host ,
4
+ ...
5
+ } :
6
+ with option-functions ;
7
+ option "programs" "loupe" {
8
+ enable = enableOption "loupe" host . isDesktop ;
9
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ option-functions ,
3
+ host ,
4
+ ...
5
+ } :
6
+ with option-functions ;
7
+ option "programs" "totem" {
8
+ enable = enableOption "totem" host . isDesktop ;
9
+ }
You can’t perform that action at this time.
0 commit comments